mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
Fix for bug #2008054: Parallaction engine doesn't compile under MSVC9
svn-id: r32879
This commit is contained in:
parent
18559708c6
commit
de09845319
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user