Skip to content

Commit

Permalink
MORTEVIELLE: Fix another graphic glitch in the image decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster authored and Strangerke committed Apr 6, 2012
1 parent e88b951 commit a306753
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions engines/mortevielle/graphics.cpp
Expand Up @@ -264,7 +264,6 @@ void GfxSurface::decode(const byte *pSrc) {

case 2:
// Draw rect alternating top to bottom, bottom to top
INCR_TAIX;
for (int xCtr = 0; xCtr < _xSize; ++xCtr) {
if ((xCtr % 2) == 0) {
for (int yCtr = 0; yCtr < _ySize; ++yCtr, pDest += DEFAULT_WIDTH) {
Expand Down Expand Up @@ -929,7 +928,6 @@ void ScreenSurface::drawPicture(GfxSurface &surface, int x, int y) {
++pDest;
}
}
g_vm->_screenSurface.updateScreen();
}

/**
Expand Down

0 comments on commit a306753

Please sign in to comment.