aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/inter.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-30 17:28:26 -0700
committerPaul Gilbert2019-07-06 15:27:08 -0700
commit18566feefcb9f4fa4d7395ffa6e6f2a6f0247d0e (patch)
tree38b0e02e10d0fb320947712a8b0650c97df0c4ef /engines/glk/alan3/inter.cpp
parentec979b8555cfc10cca3858df2cca635c04f240d2 (diff)
downloadscummvm-rg350-18566feefcb9f4fa4d7395ffa6e6f2a6f0247d0e.tar.gz
scummvm-rg350-18566feefcb9f4fa4d7395ffa6e6f2a6f0247d0e.tar.bz2
scummvm-rg350-18566feefcb9f4fa4d7395ffa6e6f2a6f0247d0e.zip
GLK: ALAN3: Implement savegame code
Diffstat (limited to 'engines/glk/alan3/inter.cpp')
-rw-r--r--engines/glk/alan3/inter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/alan3/inter.cpp b/engines/glk/alan3/inter.cpp
index 042144204f..22198546f2 100644
--- a/engines/glk/alan3/inter.cpp
+++ b/engines/glk/alan3/inter.cpp
@@ -601,13 +601,13 @@ void interpret(Aaddr adr) {
case I_SAVE: {
if (traceInstructionOption)
printf("SAVE\t\t\t\t\t\t");
- save();
+ g_vm->saveGame();
break;
}
case I_RESTORE: {
if (traceInstructionOption)
printf("RESTORE\t\t\t\t\t\t");
- restore();
+ g_vm->loadGame();
break;
}
case I_RESTART: {