[Scummvm-git-logs] scummvm master -> 13753f33a9e61cf7741c7329c96504db664746aa
dreammaster
dreammaster at scummvm.org
Thu Jun 17 05:25:17 UTC 2021
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:
13753f33a9 AGS: Fix error message string
Commit: 13753f33a9e61cf7741c7329c96504db664746aa
https://github.com/scummvm/scummvm/commit/13753f33a9e61cf7741c7329c96504db664746aa
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-06-16T22:25:07-07:00
Commit Message:
AGS: Fix error message string
Changed paths:
engines/ags/engine/ac/game.cpp
diff --git a/engines/ags/engine/ac/game.cpp b/engines/ags/engine/ac/game.cpp
index e8d8dd56a4..cd74cc7ac0 100644
--- a/engines/ags/engine/ac/game.cpp
+++ b/engines/ags/engine/ac/game.cpp
@@ -1062,7 +1062,7 @@ bool try_restore_save(const Shared::String &path, int slot) {
bool data_overwritten;
HSaveError err = load_game(path, slot, data_overwritten);
if (!err) {
- String error = String::FromFormat("Unable to restore the saved _GP(game).\n%s",
+ String error = String::FromFormat("Unable to restore the saved game.\n%s",
err->FullMessage().GetCStr());
Debug::Printf(kDbgMsg_Error, "%s", error.GetCStr());
// currently AGS cannot properly revert to stable state if some of the
More information about the Scummvm-git-logs
mailing list