[Scummvm-cvs-logs] SF.net SVN: scummvm:[41567] scummvm/trunk/engines/gob/parse.h

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Tue Jun 16 01:09:04 CEST 2009


Revision: 41567
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41567&view=rev
Author:   drmccoy
Date:     2009-06-15 23:09:04 +0000 (Mon, 15 Jun 2009)

Log Message:
-----------
Adding a TYPE_ enum

Modified Paths:
--------------
    scummvm/trunk/engines/gob/parse.h

Modified: scummvm/trunk/engines/gob/parse.h
===================================================================
--- scummvm/trunk/engines/gob/parse.h	2009-06-15 23:08:44 UTC (rev 41566)
+++ scummvm/trunk/engines/gob/parse.h	2009-06-15 23:09:04 UTC (rev 41567)
@@ -81,6 +81,22 @@
 };
 
 enum {
+	TYPE_IMM_INT8           = OP_LOAD_IMM_INT8,          // 21
+	TYPE_IMM_INT32          = OP_LOAD_IMM_INT32,         // 19
+	TYPE_IMM_INT16          = OP_LOAD_IMM_INT16,         // 20
+	TYPE_IMM_STR            = OP_LOAD_IMM_STR,           // 22
+	TYPE_VAR_INT8           = OP_LOAD_VAR_INT8,          // 18
+	TYPE_VAR_INT16          = OP_LOAD_VAR_INT16,         // 17
+	TYPE_VAR_INT32          = OP_LOAD_VAR_INT32,         // 23
+	TYPE_VAR_STR            = OP_LOAD_VAR_STR,           // 25
+	TYPE_ARRAY_INT8         = OP_ARRAY_INT8,             // 16
+	TYPE_ARRAY_INT16        = OP_ARRAY_INT16,            // 27
+	TYPE_ARRAY_INT32        = OP_ARRAY_INT32,            // 26
+	TYPE_ARRAY_STR          = OP_ARRAY_STR,              // 28
+	TYPE_VAR_INT32_AS_INT16 = OP_LOAD_VAR_INT32_AS_INT16 // 24
+};
+
+enum {
 	// FIXME: The following two 'truth values' are stored inside the list
 	// of "operators". So they somehow coincide with OP_LOAD_VAR_INT32
 	// and OP_LOAD_VAR_INT32_AS_INT16. I haven't yet quite understood


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