diff options
author | Filippos Karapetis | 2008-01-30 23:12:51 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-01-30 23:12:51 +0000 |
commit | f2a16e4f56443ad4b8a6eda7b8685bf3b1d94cc5 (patch) | |
tree | 82acd40b757e406c0360329ccb2b83f83fb3f85c /engines | |
parent | 289d18ed070765de3d392acf92d2d5dbfbc33dbd (diff) | |
download | scummvm-rg350-f2a16e4f56443ad4b8a6eda7b8685bf3b1d94cc5.tar.gz scummvm-rg350-f2a16e4f56443ad4b8a6eda7b8685bf3b1d94cc5.tar.bz2 scummvm-rg350-f2a16e4f56443ad4b8a6eda7b8685bf3b1d94cc5.zip |
Changed the parameter types of setFlags() and clearFlags() to match their definitions
svn-id: r30711
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/gfxbase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/gfxbase.cpp b/engines/parallaction/gfxbase.cpp index 60f00f10f5..ae14dd3ae7 100644 --- a/engines/parallaction/gfxbase.cpp +++ b/engines/parallaction/gfxbase.cpp @@ -69,11 +69,11 @@ byte *GfxObj::getData(uint f) { } -void GfxObj::setFlags(uint flags) { +void GfxObj::setFlags(uint32 flags) { _flags |= flags; } -void GfxObj::clearFlags(uint flags) { +void GfxObj::clearFlags(uint32 flags) { _flags &= ~flags; } |