aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorPaweł Kołodziejski2006-02-23 17:51:27 +0000
committerPaweł Kołodziejski2006-02-23 17:51:27 +0000
commit11f348dd6c4e9b6eea3ba314debe4fd621202c07 (patch)
treedcbf710bfec77a7fbaa26653e09513c0a36b7e66 /engines/gob
parent7b25fa0bd400a14d13d2926663b19277fb1f16eb (diff)
downloadscummvm-rg350-11f348dd6c4e9b6eea3ba314debe4fd621202c07.tar.gz
scummvm-rg350-11f348dd6c4e9b6eea3ba314debe4fd621202c07.tar.bz2
scummvm-rg350-11f348dd6c4e9b6eea3ba314debe4fd621202c07.zip
fixed warnings
svn-id: r20829
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/mult_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/mult_v2.cpp b/engines/gob/mult_v2.cpp
index 200349f58f..087754f9a8 100644
--- a/engines/gob/mult_v2.cpp
+++ b/engines/gob/mult_v2.cpp
@@ -63,7 +63,7 @@ void Mult_v2::loadMult(int16 resId) {
staticCount++;
animCount++;
- hbstaticCount = staticCount & 0x80;
+ hbstaticCount = (staticCount & 0x80) != 0;
staticCount &= 0x7F;
debug(7, "statics: %u, anims: %u, hb: %u", staticCount, animCount, hbstaticCount);