mirror of https://github.com/PCSX2/pcsx2.git
Qt/SaveState: Simplify warning message.
This commit is contained in:
parent
b9f4a01138
commit
e520dc2605
|
@ -1052,9 +1052,10 @@ static bool CheckVersion(const std::string& filename, zip_t* zf, Error* error)
|
||||||
// than the emulator recognizes. 99% chance that trying to load it will just corrupt emulation or crash.
|
// than the emulator recognizes. 99% chance that trying to load it will just corrupt emulation or crash.
|
||||||
if (savever > g_SaveVersion || (savever >> 16) != (g_SaveVersion >> 16))
|
if (savever > g_SaveVersion || (savever >> 16) != (g_SaveVersion >> 16))
|
||||||
{
|
{
|
||||||
Error::SetString(error, fmt::format(TRANSLATE_FS("SaveState","This savestate is an unsupported version and cannot be used.\n\n"
|
Error::SetString(error, fmt::format(TRANSLATE_FS("SaveState","This save state is outdated and is no longer compatible "
|
||||||
"You can download PCSX2 {} from pcsx2.net and make a normal memory card save.\n"
|
"with the current version of PCSX2.\n\n"
|
||||||
"Otherwise delete the savestate and do a fresh boot."),
|
"If you have any unsaved progress on this save state, you can download the compatible version (PCSX2 {}) "
|
||||||
|
"from pcsx2.net, load the save state, and save your progress to the memory card."),
|
||||||
version_string));
|
version_string));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue