MADS: Reduce the scope of a variable in panTransition

This commit is contained in:
Strangerke 2015-11-23 00:27:42 +01:00
parent a12516ee18
commit 767ce0ddc0

View File

@ -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,