mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
Print message when save state loading fails.
This commit is contained in:
parent
605958894a
commit
d44dc8ee45
1 changed files with 2 additions and 1 deletions
|
@ -474,8 +474,9 @@ bool CPS2VM::SaveVMState(const fs::path& statePath)
|
|||
|
||||
archive.Write(stateStream);
|
||||
}
|
||||
catch(...)
|
||||
catch(const std::exception& ex)
|
||||
{
|
||||
printf("Failed to save state: %s\r\n", ex.what());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue