[Scummvm-git-logs] scummvm master -> 29dcab406af6c1e5b0a0a9d421c71771781fde40
digitall
dgturner at iee.org
Wed Jul 24 17:37:57 CEST 2019
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:
29dcab406a GLK: FROTZ: Fix GCC Compilation Error from Missing Format String
Commit: 29dcab406af6c1e5b0a0a9d421c71771781fde40
https://github.com/scummvm/scummvm/commit/29dcab406af6c1e5b0a0a9d421c71771781fde40
Author: D G Turner (digitall at scummvm.org)
Date: 2019-07-24T16:35:04+01:00
Commit Message:
GLK: FROTZ: Fix GCC Compilation Error from Missing Format String
Changed paths:
engines/glk/frotz/frotz.cpp
diff --git a/engines/glk/frotz/frotz.cpp b/engines/glk/frotz/frotz.cpp
index 02ee090..c9a0395 100644
--- a/engines/glk/frotz/frotz.cpp
+++ b/engines/glk/frotz/frotz.cpp
@@ -123,7 +123,7 @@ Common::Error Frotz::loadGameState(int slot) {
|| h_screen_cols != old_screen_cols))
erase_window(1);
} else {
- error(_("Error reading save file"));
+ error("%s", _("Error reading save file"));
}
return Common::kNoError;
More information about the Scummvm-git-logs
mailing list