[Scummvm-cvs-logs] SF.net SVN: scummvm:[34214] scummvm/trunk/engines/tinsel/tinsel.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sun Aug 31 00:10:49 CEST 2008


Revision: 34214
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34214&view=rev
Author:   fingolfin
Date:     2008-08-30 22:10:48 +0000 (Sat, 30 Aug 2008)

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

Modified Paths:
--------------
    scummvm/trunk/engines/tinsel/tinsel.h

Modified: scummvm/trunk/engines/tinsel/tinsel.h
===================================================================
--- scummvm/trunk/engines/tinsel/tinsel.h	2008-08-30 22:09:35 UTC (rev 34213)
+++ scummvm/trunk/engines/tinsel/tinsel.h	2008-08-30 22:10:48 UTC (rev 34214)
@@ -66,8 +66,8 @@
 };
 
 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;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list