diff options
author | Paul Gilbert | 2019-01-02 23:13:13 -0800 |
---|---|---|
committer | Paul Gilbert | 2019-01-02 23:13:13 -0800 |
commit | 85816c8a54d77423c6400e41da93f62fe1f948ff (patch) | |
tree | 7bbfc83db905b320a569e093f9e52849339011c6 /engines/glk/tads/tads3 | |
parent | 8d6909608d3faff88a43408b01097a070c45db21 (diff) | |
download | scummvm-rg350-85816c8a54d77423c6400e41da93f62fe1f948ff.tar.gz scummvm-rg350-85816c8a54d77423c6400e41da93f62fe1f948ff.tar.bz2 scummvm-rg350-85816c8a54d77423c6400e41da93f62fe1f948ff.zip |
GLK: Make a _gameFile field in the base Glk engine
Diffstat (limited to 'engines/glk/tads/tads3')
-rw-r--r-- | engines/glk/tads/tads3/tads3.cpp | 2 | ||||
-rw-r--r-- | engines/glk/tads/tads3/tads3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/tads/tads3/tads3.cpp b/engines/glk/tads/tads3/tads3.cpp index 911e87fd2b..10fb602fe2 100644 --- a/engines/glk/tads/tads3/tads3.cpp +++ b/engines/glk/tads/tads3/tads3.cpp @@ -29,7 +29,7 @@ namespace TADS3 { TADS3::TADS3(OSystem *syst, const GlkGameDescription &gameDesc) : TADS(syst, gameDesc) { } -void TADS3::runGame(Common::SeekableReadStream *gameFile) { +void TADS3::runGame() { // TODO } diff --git a/engines/glk/tads/tads3/tads3.h b/engines/glk/tads/tads3/tads3.h index 2fc4961738..45a3f0933f 100644 --- a/engines/glk/tads/tads3/tads3.h +++ b/engines/glk/tads/tads3/tads3.h @@ -42,7 +42,7 @@ public: /** * Execute the game */ - virtual void runGame(Common::SeekableReadStream *gameFile) override; + virtual void runGame() override; /** * Returns the running interpreter type |