diff --git a/engines/glk/advsys/advsys.cpp b/engines/glk/advsys/advsys.cpp index c65cd1806f2..a61033a5061 100644 --- a/engines/glk/advsys/advsys.cpp +++ b/engines/glk/advsys/advsys.cpp @@ -83,7 +83,6 @@ void AdvSys::deinitialize() { } bool AdvSys::singleAction() { - debug("------------------"); // Do the before code switch (execute(_beforeOffset)) { case ABORT: diff --git a/engines/glk/advsys/vm.cpp b/engines/glk/advsys/vm.cpp index 13929aed8eb..1cb42dad7b0 100644 --- a/engines/glk/advsys/vm.cpp +++ b/engines/glk/advsys/vm.cpp @@ -315,7 +315,7 @@ void VM::opSAVE() { } void VM::opRESTORE() { - if (saveGame().getCode() != Common::kNoError) + if (loadGame().getCode() != Common::kNoError) print(_("Sorry, the savegame couldn't be restored")); }