TINSEL: The engine version is an integer, not a bitfield

svn-id: r34214
This commit is contained in:
Max Horn 2008-08-30 22:10:48 +00:00
parent aa463878a3
commit 4875b44052

View File

@ -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;