ZVISION: Always update the screen to ensure the mouse continues to render

This commit is contained in:
richiesams 2013-08-19 23:54:17 -05:00
parent 9294c5eac9
commit 6c7303995f

View File

@ -153,11 +153,12 @@ void ZVision::playVideo(Video::VideoDecoder &videoDecoder, const Common::Rect &d
} else {
_system->copyRectToScreen((const byte *)frame->getBasePtr(0, 0), pitch, x, y, finalWidth, finalHeight);
}
_system->updateScreen();
}
}
// Always update the screen so the mouse continues to render
_system->updateScreen();
_system->delayMillis(videoDecoder.getTimeToNextFrame());
}