diff options
author | Paul Gilbert | 2018-11-17 19:04:06 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 3b906cb2bb302d9256d07cb462f445af16c7d129 (patch) | |
tree | 0928d07e9f923953401ff82eb488705d59878d9b /engines/glk/scott | |
parent | b05a16a0ad0dcc2881aeda81e0d1a84a752eccab (diff) | |
download | scummvm-rg350-3b906cb2bb302d9256d07cb462f445af16c7d129.tar.gz scummvm-rg350-3b906cb2bb302d9256d07cb462f445af16c7d129.tar.bz2 scummvm-rg350-3b906cb2bb302d9256d07cb462f445af16c7d129.zip |
GLK: Fixes for combined loading/saving code
Diffstat (limited to 'engines/glk/scott')
-rw-r--r-- | engines/glk/scott/scott.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/glk/scott/scott.h b/engines/glk/scott/scott.h index a22f88bf94..ad1313d5d4 100644 --- a/engines/glk/scott/scott.h +++ b/engines/glk/scott/scott.h @@ -167,6 +167,11 @@ public: Scott(OSystem *syst, const GlkGameDescription &gameDesc); /** + * Returns the running interpreter type + */ + virtual InterpreterType getInterpreterType() const override { return INTERPRETER_SCOTT; } + + /** * Execute the game */ virtual void runGame(Common::SeekableReadStream *gameFile) override; |