aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-05-18 16:21:55 -1000
committerPaul Gilbert2019-05-24 18:21:06 -0700
commite3454b5d96c258f59a1186eae1bdfd01d5f7af3e (patch)
treed1814d2cbedb8ae4b7b0d268f312f54e8fd1ba0f /engines/glk/glk.h
parent5aacb456458af18581fcf72fc96824027c566e79 (diff)
downloadscummvm-rg350-e3454b5d96c258f59a1186eae1bdfd01d5f7af3e.tar.gz
scummvm-rg350-e3454b5d96c258f59a1186eae1bdfd01d5f7af3e.tar.bz2
scummvm-rg350-e3454b5d96c258f59a1186eae1bdfd01d5f7af3e.zip
GLK: TADS: Don't support RTL
Diffstat (limited to 'engines/glk/glk.h')
-rw-r--r--engines/glk/glk.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/engines/glk/glk.h b/engines/glk/glk.h
index 6b95eb2a62..f96f384027 100644
--- a/engines/glk/glk.h
+++ b/engines/glk/glk.h
@@ -86,7 +86,7 @@ protected:
/**
* Returns true whether a given feature is supported by the engine
*/
- virtual bool hasFeature(EngineFeature f) const;
+ virtual bool hasFeature(EngineFeature f) const override;
/**
* Setup the video mode
@@ -139,16 +139,6 @@ public:
}
/**
- * Returns the bitset of game features
- */
- uint32 getFeatures() const;
-
- /**
- * Returns whether the game is a demo
- */
- bool isDemo() const;
-
- /**
* Returns the language
*/
Common::Language getLanguage() const { return _gameDescription._language; };