mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Address review comments
This commit is contained in:
		
							parent
							
								
									45be693f8c
								
							
						
					
					
						commit
						23e969dfdc
					
				
					 5 changed files with 22 additions and 18 deletions
				
			
		|  | @ -255,7 +255,8 @@ void Config::ReadValues() { | |||
|     qt_config->endGroup(); | ||||
| 
 | ||||
|     qt_config->beginGroup("Debugging"); | ||||
|     Settings::values.record_frame_times = ReadSetting("record_frame_times", false).toBool(); | ||||
|     // Intentionally not using the QT default setting as this is intended to be changed in the ini
 | ||||
|     Settings::values.record_frame_times = qt_config->value("record_frame_times", false).toBool(); | ||||
|     Settings::values.use_gdbstub = ReadSetting("use_gdbstub", false).toBool(); | ||||
|     Settings::values.gdbstub_port = ReadSetting("gdbstub_port", 24689).toInt(); | ||||
| 
 | ||||
|  | @ -545,7 +546,8 @@ void Config::SaveValues() { | |||
|     qt_config->endGroup(); | ||||
| 
 | ||||
|     qt_config->beginGroup("Debugging"); | ||||
|     WriteSetting("record_frame_times", Settings::values.record_frame_times, false); | ||||
|     // Intentionally not using the QT default setting as this is intended to be changed in the ini
 | ||||
|     qt_config->setValue("record_frame_times", Settings::values.record_frame_times); | ||||
|     WriteSetting("use_gdbstub", Settings::values.use_gdbstub, false); | ||||
|     WriteSetting("gdbstub_port", Settings::values.gdbstub_port, 24689); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue