diff --git a/Source/PS2VM.cpp b/Source/PS2VM.cpp index b89357056..91b66e955 100644 --- a/Source/PS2VM.cpp +++ b/Source/PS2VM.cpp @@ -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; }