From 13e18e4801abe0dfae5d730ec5cce2ede247b76a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 5 Apr 2005 23:30:35 +0000 Subject: Fix parens. Spotted by Quietust. svn-id: r17403 --- scumm/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index e46abd0c3d..056d8e9e27 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -555,7 +555,7 @@ void ScummEngine::drawStripToScreen(VirtScreen *vs, int x, int width, int top, i // NES can address negative number strips and that poses problem for // our code. So instead adding zillions of fixes and potentially break // other games we shift it right on rendering stage - if ((_features & GF_NES) && ((_NESStartStrip > 0) && (vs->number == kMainVirtScreen)) || (vs->number == kTextVirtScreen)) { + if ((_features & GF_NES) && (((_NESStartStrip > 0) && (vs->number == kMainVirtScreen)) || (vs->number == kTextVirtScreen))) { x += 16; } -- cgit v1.2.3