[Scummvm-cvs-logs] SF.net SVN: scummvm: [25421] scummvm/trunk/engines/parallaction/commands. cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Thu Feb 8 00:02:52 CET 2007


Revision: 25421
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25421&view=rev
Author:   peres001
Date:     2007-02-07 15:02:51 -0800 (Wed, 07 Feb 2007)

Log Message:
-----------
fixed location script parsing error causing irritatingly inconsistent gameplay

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/commands.cpp

Modified: scummvm/trunk/engines/parallaction/commands.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/commands.cpp	2007-02-07 22:33:06 UTC (rev 25420)
+++ scummvm/trunk/engines/parallaction/commands.cpp	2007-02-07 23:02:51 UTC (rev 25421)
@@ -174,7 +174,7 @@
 					byte _al = _vm->searchTable(&_tokens[_si][2], const_cast<const char **>(_globalTable));
 					cmd->_flagsOff |= 1 << (_al - 1);
 				} else {
-					byte _al = _vm->searchTable(_tokens[_si], const_cast<const char **>(_localFlagNames));
+					byte _al = _vm->searchTable(_tokens[_si], const_cast<const char **>(_globalTable));
 					cmd->_flagsOn |= 1 << (_al - 1);
 				}
 


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