mirror of https://github.com/PCSX2/pcsx2.git
SaveState: Add a distinct error message when the file doesn't exist
It doesn't make sense to say that the file is not a valid archive, because it doesn't exist in the first place.
This commit is contained in:
parent
3572b4752e
commit
d2bdb85dc8
|
@ -1059,10 +1059,19 @@ void SaveState_UnzipFromDisk(const std::string& filename)
|
||||||
if (!zf)
|
if (!zf)
|
||||||
{
|
{
|
||||||
Console.Error("Failed to open zip file '%s' for save state load: %s", filename.c_str(), zip_error_strerror(&ze));
|
Console.Error("Failed to open zip file '%s' for save state load: %s", filename.c_str(), zip_error_strerror(&ze));
|
||||||
|
if (zip_error_code_zip(&ze) == ZIP_ER_NOENT)
|
||||||
|
{
|
||||||
|
throw Exception::SaveStateLoadError(filename)
|
||||||
|
.SetDiagMsg("Savestate file does not exist.")
|
||||||
|
.SetUserMsg("This savestate cannot be loaded because the file does not exist.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
throw Exception::SaveStateLoadError(filename)
|
throw Exception::SaveStateLoadError(filename)
|
||||||
.SetDiagMsg("Savestate file is not a valid gzip archive.")
|
.SetDiagMsg("Savestate file is not a valid gzip archive.")
|
||||||
.SetUserMsg("This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted.");
|
.SetUserMsg("This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted.");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// look for version and screenshot information in the zip stream:
|
// look for version and screenshot information in the zip stream:
|
||||||
CheckVersion(filename, zf.get());
|
CheckVersion(filename, zf.get());
|
||||||
|
|
Loading…
Reference in New Issue