aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz
diff options
context:
space:
mode:
authorD G Turner2019-07-24 16:35:04 +0100
committerD G Turner2019-07-24 16:35:04 +0100
commit29dcab406af6c1e5b0a0a9d421c71771781fde40 (patch)
tree02b8fdb1314674537791b58b572fc7742550e35e /engines/glk/frotz
parentfce453dc43bf1029c14923ee927cfaba1b23a34c (diff)
downloadscummvm-rg350-29dcab406af6c1e5b0a0a9d421c71771781fde40.tar.gz
scummvm-rg350-29dcab406af6c1e5b0a0a9d421c71771781fde40.tar.bz2
scummvm-rg350-29dcab406af6c1e5b0a0a9d421c71771781fde40.zip
GLK: FROTZ: Fix GCC Compilation Error from Missing Format String
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r--engines/glk/frotz/frotz.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/frotz.cpp b/engines/glk/frotz/frotz.cpp
index 02ee0900c9..c9a039519d 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;