fixed testGfxAnyUsageBits

svn-id: r6520
This commit is contained in:
Max Horn 2003-01-19 20:31:05 +00:00
parent eea84f1ac1
commit c057866548

View file

@ -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++)