aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/quest/geas_glk.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-09-30 19:05:48 -0700
committerPaul Gilbert2019-09-30 19:05:48 -0700
commitf4b12285d09dbf78c2e636483b0662c4ed400fad (patch)
tree109693809b9c4904f459ad95f2953f7d7c76de07 /engines/glk/quest/geas_glk.cpp
parent13de2f177135b8f243d373c1aaa5367aaa9b1845 (diff)
downloadscummvm-rg350-f4b12285d09dbf78c2e636483b0662c4ed400fad.tar.gz
scummvm-rg350-f4b12285d09dbf78c2e636483b0662c4ed400fad.tar.bz2
scummvm-rg350-f4b12285d09dbf78c2e636483b0662c4ed400fad.zip
GLK: QUEST: Support loading savegames from the launcher
Diffstat (limited to 'engines/glk/quest/geas_glk.cpp')
-rw-r--r--engines/glk/quest/geas_glk.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/quest/geas_glk.cpp b/engines/glk/quest/geas_glk.cpp
index 6b5f8b1b3d..a6324fa197 100644
--- a/engines/glk/quest/geas_glk.cpp
+++ b/engines/glk/quest/geas_glk.cpp
@@ -63,7 +63,8 @@ void draw_banner() {
}
void glk_put_cstring(const char *s) {
- g_vm->glk_put_string(s);
+ if (!g_vm->loadingSavegame())
+ g_vm->glk_put_string(s);
}
GeasResult GeasGlkInterface::print_normal(const String &s) {