mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	savestates: log slot on load and save
This commit is contained in:
		
							parent
							
								
									7b8832cebb
								
							
						
					
					
						commit
						8e8c8fa37a
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -113,9 +113,10 @@ System::ResultStatus System::RunLoop(bool tight_loop) { | |||
|     case Signal::Shutdown: | ||||
|         return ResultStatus::ShutdownRequested; | ||||
|     case Signal::Load: { | ||||
|         LOG_INFO(Core, "Begin load"); | ||||
|         const u32 slot = param; | ||||
|         LOG_INFO(Core, "Begin load of slot {}", slot); | ||||
|         try { | ||||
|             System::LoadState(param); | ||||
|             System::LoadState(slot); | ||||
|             LOG_INFO(Core, "Load completed"); | ||||
|         } catch (const std::exception& e) { | ||||
|             LOG_ERROR(Core, "Error loading: {}", e.what()); | ||||
|  | @ -126,9 +127,10 @@ System::ResultStatus System::RunLoop(bool tight_loop) { | |||
|         return ResultStatus::Success; | ||||
|     } | ||||
|     case Signal::Save: { | ||||
|         LOG_INFO(Core, "Begin save"); | ||||
|         const u32 slot = param; | ||||
|         LOG_INFO(Core, "Begin save to slot {}", slot); | ||||
|         try { | ||||
|             System::SaveState(param); | ||||
|             System::SaveState(slot); | ||||
|             LOG_INFO(Core, "Save completed"); | ||||
|         } catch (const std::exception& e) { | ||||
|             LOG_ERROR(Core, "Error saving: {}", e.what()); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue