GLK: ADVSYS: Fix restoring games in-game

This commit is contained in:
Paul Gilbert 2019-06-16 18:56:39 -07:00
parent 1afd60cd3e
commit 66babe212e
2 changed files with 1 additions and 2 deletions

View File

@ -83,7 +83,6 @@ void AdvSys::deinitialize() {
} }
bool AdvSys::singleAction() { bool AdvSys::singleAction() {
debug("------------------");
// Do the before code // Do the before code
switch (execute(_beforeOffset)) { switch (execute(_beforeOffset)) {
case ABORT: case ABORT:

View File

@ -315,7 +315,7 @@ void VM::opSAVE() {
} }
void VM::opRESTORE() { void VM::opRESTORE() {
if (saveGame().getCode() != Common::kNoError) if (loadGame().getCode() != Common::kNoError)
print(_("Sorry, the savegame couldn't be restored")); print(_("Sorry, the savegame couldn't be restored"));
} }