mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #1005 from chinhodado/patch-1
Settings: Fix saving wrong values for input configuration
This commit is contained in:
		
						commit
						ce2dd86f8f
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -66,7 +66,8 @@ void Config::ReadValues() { | |||
| void Config::SaveValues() { | ||||
|     qt_config->beginGroup("Controls"); | ||||
|     for (int i = 0; i < Settings::NativeInput::NUM_INPUTS; ++i) { | ||||
|         qt_config->setValue(QString::fromStdString(Settings::NativeInput::Mapping[i]), Settings::NativeInput::All[i]); | ||||
|         qt_config->setValue(QString::fromStdString(Settings::NativeInput::Mapping[i]), | ||||
|             Settings::values.input_mappings[Settings::NativeInput::All[i]]); | ||||
|     } | ||||
|     qt_config->endGroup(); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue