aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-01-19 20:31:05 +0000
committerMax Horn2003-01-19 20:31:05 +0000
commitc05786654806d19d8e613093f92c3fd3b8263463 (patch)
tree19e0b8ccc8e072a4c5faad5a184f33352b7c086f /scumm
parenteea84f1ac1657daccf66caed094edfdc803db1dc (diff)
downloadscummvm-rg350-c05786654806d19d8e613093f92c3fd3b8263463.tar.gz
scummvm-rg350-c05786654806d19d8e613093f92c3fd3b8263463.tar.bz2
scummvm-rg350-c05786654806d19d8e613093f92c3fd3b8263463.zip
fixed testGfxAnyUsageBits
svn-id: r6520
Diffstat (limited to 'scumm')
-rw-r--r--scumm/usage_bits.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/usage_bits.cpp b/scumm/usage_bits.cpp
index 3701fce0f8..f9103bf652 100644
--- a/scumm/usage_bits.cpp
+++ b/scumm/usage_bits.cpp
@@ -61,7 +61,7 @@ bool Scumm::testGfxUsageBit(int strip, int bit)
bool Scumm::testGfxAnyUsageBits(int strip)
{
// Exclude the DIRTY and RESTORED bits from the test
- uint32 bitmask[3] = { 0x3FFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
+ uint32 bitmask[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0x3FFFFFFF };
int i;
for (i = 0; i < 3; i++)