From 767ce0ddc06ba1d499347f1bccc99d6892b87136 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Mon, 23 Nov 2015 00:27:42 +0100 Subject: MADS: Reduce the scope of a variable in panTransition --- engines/mads/screen.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engines/mads/screen.cpp b/engines/mads/screen.cpp index c9f5df8b98..90fbbe7e2a 100644 --- a/engines/mads/screen.cpp +++ b/engines/mads/screen.cpp @@ -687,7 +687,6 @@ void ScreenSurface::panTransition(MSurface &newScreen, byte *palData, int entryS int y1, y2; int startX = 0; int deltaX; - int xAt; int loopStart; // uint32 baseTicks, currentTicks; byte paletteMap[256]; @@ -720,7 +719,7 @@ void ScreenSurface::panTransition(MSurface &newScreen, byte *palData, int entryS loopStart = throughBlack == THROUGH_BLACK1 ? 0 : 1; for (int loop = loopStart; loop < 2; ++loop) { - xAt = startX; + int xAt = startX; for (int xCtr = 0; xCtr < size.x; ++xCtr, xAt += deltaX) { if (!loop) { fillRect(Common::Rect(xAt + destPos.x, y1 + destPos.y, -- cgit v1.2.3