aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/gob.h')
-rw-r--r--engines/gob/gob.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/engines/gob/gob.h b/engines/gob/gob.h
index 4a8e9364fe..9b07568223 100644
--- a/engines/gob/gob.h
+++ b/engines/gob/gob.h
@@ -119,14 +119,15 @@ enum GameType {
};
enum Features {
- kFeaturesNone = 0,
- kFeaturesCD = 1 << 0,
- kFeaturesEGA = 1 << 1,
- kFeaturesAdLib = 1 << 2,
- kFeaturesSCNDemo = 1 << 3,
- kFeaturesBATDemo = 1 << 4,
- kFeatures640x480 = 1 << 5,
- kFeatures800x600 = 1 << 6
+ kFeaturesNone = 0,
+ kFeaturesCD = 1 << 0,
+ kFeaturesEGA = 1 << 1,
+ kFeaturesAdLib = 1 << 2,
+ kFeaturesSCNDemo = 1 << 3,
+ kFeaturesBATDemo = 1 << 4,
+ kFeatures640x480 = 1 << 5,
+ kFeatures800x600 = 1 << 6,
+ kFeaturesTrueColor = 1 << 7
};
enum {
@@ -213,6 +214,7 @@ public:
bool isBATDemo() const;
bool is640x480() const;
bool is800x600() const;
+ bool isTrueColor() const;
bool isDemo() const;
GobEngine(OSystem *syst);