From 0ea7589e2ca4fce7dd07e9e757b8527652e2ac58 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 30 Mar 2009 12:08:12 +0000 Subject: TINSEL: Commit of parentheses patch from salty-horse. (from -devel "Enabling -Wparentheses in the Makefile"). svn-id: r39759 --- engines/tinsel/bmv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/tinsel/bmv.cpp') 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; } -- cgit v1.2.3