aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/bmv.cpp
diff options
context:
space:
mode:
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;
}