Fix for bug #2008054: Parallaction engine doesn't compile under MSVC9

svn-id: r32879
This commit is contained in:
Eugene Sandulenko 2008-07-03 08:44:29 +00:00
parent 18559708c6
commit de09845319
2 changed files with 2 additions and 2 deletions

View File

@ -390,7 +390,7 @@ DECLARE_LOCATION_PARSER(flags) {
if ((_vm->getLocationFlags() & kFlagsVisited) == 0) {
// only for 1st visit
_vm->clearLocationFlags(kFlagsAll);
_vm->clearLocationFlags((uint32)kFlagsAll);
int _si = 1;
do {

View File

@ -1059,7 +1059,7 @@ DECLARE_LOCATION_PARSER(flags) {
if ((_vm->getLocationFlags() & kFlagsVisited) == 0) {
// only for 1st visit
_vm->clearLocationFlags(kFlagsAll);
_vm->clearLocationFlags((uint32)kFlagsAll);
int _si = 1;
do {