diff options
-rw-r--r-- | engines/simon/animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/animation.cpp b/engines/simon/animation.cpp index 7ce0cb9c75..18438cad68 100644 --- a/engines/simon/animation.cpp +++ b/engines/simon/animation.cpp @@ -244,7 +244,7 @@ void MoviePlayer::processFrame() { uint x = (_vm->_screenWidth - _width) / 2; uint y = (_vm->_screenHeight - _height) / 2; - _vm->_system->copyRectToScreen(_frameBuffer1, _width, x, y, _width, _height); + _vm->_system->copyRectToScreen(_vm->_frontBuf, _width, x, y, _width, _height); if ((_bgSoundStream == NULL) || ((_mixer->getSoundElapsedTime(_bgSound) * _frameRate) / 1000 < _frameNum + 1) || _frameSkipped > _frameRate) { |