diff options
author | Max Horn | 2008-08-30 22:10:48 +0000 |
---|---|---|
committer | Max Horn | 2008-08-30 22:10:48 +0000 |
commit | 4875b440527cd8d228ee80dcc9159bb95fb7a7d3 (patch) | |
tree | 47606530a577350e31c5c4fbaea47c27373b4b1c /engines/tinsel | |
parent | aa463878a3421affdc15b9fb533a6161b3eeb088 (diff) | |
download | scummvm-rg350-4875b440527cd8d228ee80dcc9159bb95fb7a7d3.tar.gz scummvm-rg350-4875b440527cd8d228ee80dcc9159bb95fb7a7d3.tar.bz2 scummvm-rg350-4875b440527cd8d228ee80dcc9159bb95fb7a7d3.zip |
TINSEL: The engine version is an integer, not a bitfield
svn-id: r34214
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/tinsel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tinsel/tinsel.h b/engines/tinsel/tinsel.h index 816ded2141..e1684e0087 100644 --- a/engines/tinsel/tinsel.h +++ b/engines/tinsel/tinsel.h @@ -66,8 +66,8 @@ enum TinselGameFeatures { }; enum TinselEngineVersion { - TINSEL_V0 = 1 << 0, // Used in the DW1 demo only - TINSEL_V1 = 1 << 1 + TINSEL_V0 = 0, // Used in the DW1 demo only + TINSEL_V1 = 1 }; struct TinselGameDescription; |