Skip to content

Commit

Permalink
Qt/SaveState: Simplify warning message.
Browse files Browse the repository at this point in the history
  • Loading branch information
kamfretoz committed May 14, 2024
1 parent aeff832 commit c0824dd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pcsx2/SaveState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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"
"You can download PCSX2 {} from pcsx2.net and make a normal memory card save.\n"
"Otherwise delete the savestate and do a fresh boot."),
Error::SetString(error, fmt::format(TRANSLATE_FS("SaveState","This save state is outdated and is no longer compatible "
"with the current version of PCSX2.\n\n"
"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));
return false;
}
Expand Down

0 comments on commit c0824dd

Please sign in to comment.