diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index a90b45f864..e10f833712 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -129,7 +129,7 @@ void fmt_class_string::format(std::string& out, u64 arg) case game_boot_result::firmware_missing: return "Firmware is missing"; case game_boot_result::unsupported_disc_type: return "This disc type is not supported yet"; case game_boot_result::savestate_corrupted: return "Savestate data is corrupted or it's not an RPCS3 savestate"; - case game_boot_result::savestate_version_unsupported: return "Savestate versioning data differs from your RPCS3 build"; + case game_boot_result::savestate_version_unsupported: return "Savestate versioning data differs from your RPCS3 build.\nTry to use an older or newer RPCS3 build.\nEspecially if you know the build that created the savestate."; case game_boot_result::still_running: return "Game is still running"; } return unknown;