aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.h
diff options
context:
space:
mode:
authorNicola Mettifogo2008-05-07 12:44:22 +0000
committerNicola Mettifogo2008-05-07 12:44:22 +0000
commit3d3ad58e143d82103dce9f8ac7e816e9979131bc (patch)
tree96c92d6818fd5649fe2544ecaaf08469ee8f33b0 /engines/parallaction/parallaction.h
parent6e61b02cb9c44fd07fe65d7901fe1e4ed765b0c5 (diff)
downloadscummvm-rg350-3d3ad58e143d82103dce9f8ac7e816e9979131bc.tar.gz
scummvm-rg350-3d3ad58e143d82103dce9f8ac7e816e9979131bc.tar.bz2
scummvm-rg350-3d3ad58e143d82103dce9f8ac7e816e9979131bc.zip
Reverting commit 31920, thus changing type of flags back to unsigned. If some compiler emits a warning about 0xFFFFFFFF not being an unsigned immediate, then we need to find out how to convince it without changing types of variables in the code.
svn-id: r31924
Diffstat (limited to 'engines/parallaction/parallaction.h')
-rw-r--r--engines/parallaction/parallaction.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index a818702f5d..19ce437410 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -362,10 +362,10 @@ public:
Character _char;
- void setLocationFlags(int32 flags);
+ void setLocationFlags(uint32 flags);
void clearLocationFlags(uint32 flags);
- void toggleLocationFlags(int32 flags);
- int32 getLocationFlags();
+ void toggleLocationFlags(uint32 flags);
+ uint32 getLocationFlags();
uint32 _localFlags[NUM_LOCATIONS];
char _locationNames[NUM_LOCATIONS][32];