aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2008-08-30 22:10:48 +0000
committerMax Horn2008-08-30 22:10:48 +0000
commit4875b440527cd8d228ee80dcc9159bb95fb7a7d3 (patch)
tree47606530a577350e31c5c4fbaea47c27373b4b1c /engines
parentaa463878a3421affdc15b9fb533a6161b3eeb088 (diff)
downloadscummvm-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')
-rw-r--r--engines/tinsel/tinsel.h4
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;