diff options
author | Sven Hesse | 2006-11-09 22:05:57 +0000 |
---|---|---|
committer | Sven Hesse | 2006-11-09 22:05:57 +0000 |
commit | 195a46477f1f74caed31519d3c0a723b390c1e32 (patch) | |
tree | 99672b07de1d6b8f5b3d781510bf1413740bd86a | |
parent | 53ba30a3d4764330f36fe30fc2a1ba7ead70de13 (diff) | |
download | scummvm-rg350-195a46477f1f74caed31519d3c0a723b390c1e32.tar.gz scummvm-rg350-195a46477f1f74caed31519d3c0a723b390c1e32.tar.bz2 scummvm-rg350-195a46477f1f74caed31519d3c0a723b390c1e32.zip |
Closing bug #1593768 (Logical and should probably be bitwise and)
svn-id: r24667
-rw-r--r-- | engines/gob/mult_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |