aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/bmv.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-03-30 12:08:12 +0000
committerJohannes Schickel2009-03-30 12:08:12 +0000
commit0ea7589e2ca4fce7dd07e9e757b8527652e2ac58 (patch)
tree68a6a98684def78bf38d1c87ab15a5c4bbea07db /engines/tinsel/bmv.cpp
parent252dc302930fa784229357625dd64697563e3c21 (diff)
downloadscummvm-rg350-0ea7589e2ca4fce7dd07e9e757b8527652e2ac58.tar.gz
scummvm-rg350-0ea7589e2ca4fce7dd07e9e757b8527652e2ac58.tar.bz2
scummvm-rg350-0ea7589e2ca4fce7dd07e9e757b8527652e2ac58.zip
TINSEL: Commit of parentheses patch from salty-horse. (from -devel "Enabling -Wparentheses in the Makefile").
svn-id: r39759
Diffstat (limited to 'engines/tinsel/bmv.cpp')
-rw-r--r--engines/tinsel/bmv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/bmv.cpp b/engines/tinsel/bmv.cpp
index 208184035b..edfc8c1243 100644
--- a/engines/tinsel/bmv.cpp
+++ b/engines/tinsel/bmv.cpp
@@ -260,7 +260,7 @@ static void PrepBMV(const byte *sourceData, int length, short deltaFetchDisp) {
firstLoop = true;
} else {
// Get the high nibble
- eax = eax & 0xffffff00 | (NibbleHi >> 4);
+ eax = (eax & 0xffffff00) | (NibbleHi >> 4);
firstLoop = false;
}