[Scummvm-cvs-logs] SF.net SVN: scummvm: [27180] scummvm/trunk/engines/saga/itedata.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Jun 8 01:39:32 CEST 2007


Revision: 27180
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27180&view=rev
Author:   thebluegr
Date:     2007-06-07 16:39:31 -0700 (Thu, 07 Jun 2007)

Log Message:
-----------
Also include this file for the last commit

Modified Paths:
--------------
    scummvm/trunk/engines/saga/itedata.h

Modified: scummvm/trunk/engines/saga/itedata.h
===================================================================
--- scummvm/trunk/engines/saga/itedata.h	2007-06-07 23:37:32 UTC (rev 27179)
+++ scummvm/trunk/engines/saga/itedata.h	2007-06-07 23:39:31 UTC (rev 27180)
@@ -31,12 +31,14 @@
 namespace Saga {
 
 enum ActorFlags {
-	kProtagonist	= 0x01,	// Actor is protagonist
-	kFollower		= 0x02,	// Actor is follower
-	kCycle			= 0x04, // Actor stand has a cycle
-	kFaster			= 0x08, // Actor is fast
-	kFastest		= 0x10, // Actor is faster
-	kExtended		= 0x20  // Actor uses extended sprites
+	kProtagonist	= 0x01,	// (1<<0) Actor is protagonist
+	kFollower		= 0x02,	// (1<<1) Actor is follower
+	kCycle			= 0x04, // (1<<2) Actor stand has a cycle
+	kFaster			= 0x08, // (1<<3) Actor is fast
+	kFastest		= 0x10, // (1<<4) Actor is faster
+	kExtended		= 0x20, // (1<<5) Actor uses extended sprites
+	kUsable			= 0x40, // (1<<6) Actor can be used
+	kNoScale		= 0x80  // (1<<7) Actor is not scaled
 };
 
 // TODO: This doesn't quite correspond to the original Actor struct, so I'm not


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