aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan2/exe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/alan2/exe.cpp')
-rw-r--r--engines/glk/alan2/exe.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/glk/alan2/exe.cpp b/engines/glk/alan2/exe.cpp
index fd5e36cea8..fd3b065b46 100644
--- a/engines/glk/alan2/exe.cpp
+++ b/engines/glk/alan2/exe.cpp
@@ -1057,9 +1057,6 @@ void look() {
}
-static char savfnm[256];
-
-
/*----------------------------------------------------------------------
save()
@@ -1067,7 +1064,7 @@ static char savfnm[256];
*/
void save() {
- g_vm->saveGame();
+ (void)g_vm->saveGame();
}
@@ -1078,7 +1075,7 @@ void save() {
*/
void restore() {
- g_vm->loadGame();
+ (void)g_vm->loadGame();
}