[Scummvm-git-logs] scummvm master -> 4197b41038885aa0a8f10b650f43a9d7479d1006

sev- noreply at scummvm.org
Wed Jul 20 10:32:28 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
4197b41038 MTROPOLIS: Reuse GUI string about failed saves


Commit: 4197b41038885aa0a8f10b650f43a9d7479d1006
    https://github.com/scummvm/scummvm/commit/4197b41038885aa0a8f10b650f43a9d7479d1006
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-07-20T12:32:18+02:00

Commit Message:
MTROPOLIS: Reuse GUI string about failed saves

Changed paths:
    engines/mtropolis/saveload.cpp


diff --git a/engines/mtropolis/saveload.cpp b/engines/mtropolis/saveload.cpp
index 52ba0d41897..7c05c2eb361 100644
--- a/engines/mtropolis/saveload.cpp
+++ b/engines/mtropolis/saveload.cpp
@@ -123,7 +123,7 @@ bool MTropolisEngine::promptLoad(ISaveReader *reader) {
 	}
 
 	if (saveFileVersion > kCurrentSaveFileVersion) {
-		GUI::MessageDialog dialog(_("Failed to load save, the save file was created by a newer version of ScummVM."));
+		GUI::MessageDialog dialog(_("Saved game was created with a newer version of ScummVM. Unable to load."));
 		dialog.runModal();
 
 		warning("Save file '%s' version is above the current save file version", saveFileName.c_str());




More information about the Scummvm-git-logs mailing list