aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/glk.h')
-rw-r--r--engines/glk/glk.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/glk.h b/engines/glk/glk.h
index a2cc3e4981..2782353547 100644
--- a/engines/glk/glk.h
+++ b/engines/glk/glk.h
@@ -81,6 +81,7 @@ protected:
const GlkGameDescription _gameDescription;
Common::RandomSource _random;
int _loadSaveSlot;
+ Common::File _gameFile;
// Engine APIs
virtual Common::Error run();
@@ -98,7 +99,7 @@ protected:
/**
* Main game loop for the individual interpreters
*/
- virtual void runGame(Common::SeekableReadStream *gameFile) = 0;
+ virtual void runGame() = 0;
public:
Blorb *_blorb;
Clipboard *_clipboard;