aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-04-23 08:30:29 +0000
committerTravis Howell2006-04-23 08:30:29 +0000
commita0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0 (patch)
tree4ac5a32ee03783b71558f60a2817fb96fb9203a8 /engines
parent562b1f8eef3c2bed56a96b1f7af86f95cd325d96 (diff)
downloadscummvm-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.cpp2
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) {