aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/archetype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/archetype/archetype.cpp')
-rw-r--r--engines/glk/archetype/archetype.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/engines/glk/archetype/archetype.cpp b/engines/glk/archetype/archetype.cpp
index 4b19c57854..37b40ab335 100644
--- a/engines/glk/archetype/archetype.cpp
+++ b/engines/glk/archetype/archetype.cpp
@@ -93,7 +93,7 @@ Common::Error Archetype::writeGameData(Common::WriteStream *ws) {
void Archetype::interpret() {
Translating = false;
- bool success = loadGame();
+ bool success = load_game(&_gameFile);
_gameFile.close();
if (!success)
@@ -109,10 +109,6 @@ void Archetype::interpret() {
cleanup(result);
}
-bool Archetype::loadGame() {
- return false;
-}
-
void Archetype::write(const String &fmt, ...) {
// TODO
}
@@ -773,7 +769,7 @@ void Archetype::exec_stmt(StatementPtr the_stmt, ResultType &result, ContextType
else if (the_stmt->_kind == ST_STOP) {
g_vm->writeln();
g_vm->writeln();
- error("%s", VERSION);
+ error("%f", VERSION_NUM);
}
break;