aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorTravis Howell2005-05-01 14:22:00 +0000
committerTravis Howell2005-05-01 14:22:00 +0000
commit4e1cb7947372106efd4c496fdac5ada562b094a8 (patch)
treed9302e8485ac5a6545113dbff7bee0b27f4f81d3 /scumm/scumm.h
parentae14f7049e11684381503945690121a60d90e5dc (diff)
downloadscummvm-rg350-4e1cb7947372106efd4c496fdac5ada562b094a8.tar.gz
scummvm-rg350-4e1cb7947372106efd4c496fdac5ada562b094a8.tar.bz2
scummvm-rg350-4e1cb7947372106efd4c496fdac5ada562b094a8.zip
Add feature flag for HE games with 16bit color.
svn-id: r17886
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index f626d6ee1c..daa9328fbf 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -114,13 +114,16 @@ enum GameFeatures {
GF_HE_CURSORLESS = 1 << 12,
/** HE games for which localized versions exist */
- GF_HE_LOCALIZED = 1 << 13,
+ GF_HE_LOCALIZED = 1 << 13,
+
+ /** HE games with 16 bit color */
+ GF_16BIT_COLOR = 1 << 14,
/** Games with multiple versions */
- GF_MULTIPLE_VERSIONS = 1 << 14,
+ GF_MULTIPLE_VERSIONS = 1 << 15,
/** A demo, not a full blown game. */
- GF_DEMO = 1 << 15
+ GF_DEMO = 1 << 16
};
/* SCUMM Debug Channels */