From 195a46477f1f74caed31519d3c0a723b390c1e32 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Thu, 9 Nov 2006 22:05:57 +0000 Subject: Closing bug #1593768 (Logical and should probably be bitwise and) svn-id: r24667 --- engines/gob/mult_v2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/gob/mult_v2.cpp') diff --git a/engines/gob/mult_v2.cpp b/engines/gob/mult_v2.cpp index 14d14f3077..89fc627445 100644 --- a/engines/gob/mult_v2.cpp +++ b/engines/gob/mult_v2.cpp @@ -1349,7 +1349,7 @@ void Mult_v2::freeMultKeys(void) { if (_multData2 == 0) return; - staticCount = (_multData2->staticCount + 1) && 0x7F; + staticCount = (_multData2->staticCount + 1) & 0x7F; animCount = _multData2->animCount + 1; for (i = 0; i < staticCount; i++) { // loc_7345 -- cgit v1.2.3