diff options
author | Travis Howell | 2006-04-23 08:30:29 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-23 08:30:29 +0000 |
commit | a0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0 (patch) | |
tree | 4ac5a32ee03783b71558f60a2817fb96fb9203a8 /engines | |
parent | 562b1f8eef3c2bed56a96b1f7af86f95cd325d96 (diff) | |
download | scummvm-rg350-a0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0.tar.gz scummvm-rg350-a0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0.tar.bz2 scummvm-rg350-a0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0.zip |
Fix video sequences shown by arcade machines
svn-id: r22091
Diffstat (limited to 'engines')
-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) { |