aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-04-23 08:34:19 +0000
committerTravis Howell2006-04-23 08:34:19 +0000
commitb9fbf9091d46d1ecd6927c11f8cd3a4ccfe49abf (patch)
tree2ae4c854fceb93d854342cffc9f8b963815241d5 /engines
parenta0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0 (diff)
downloadscummvm-rg350-b9fbf9091d46d1ecd6927c11f8cd3a4ccfe49abf.tar.gz
scummvm-rg350-b9fbf9091d46d1ecd6927c11f8cd3a4ccfe49abf.tar.bz2
scummvm-rg350-b9fbf9091d46d1ecd6927c11f8cd3a4ccfe49abf.zip
Fix video sequences shown by arcade machines
svn-id: r22092
Diffstat (limited to 'engines')
-rw-r--r--engines/simon/animation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/simon/animation.cpp b/engines/simon/animation.cpp
index 18438cad68..a00c21dba0 100644
--- a/engines/simon/animation.cpp
+++ b/engines/simon/animation.cpp
@@ -244,6 +244,7 @@ void MoviePlayer::processFrame() {
uint x = (_vm->_screenWidth - _width) / 2;
uint y = (_vm->_screenHeight - _height) / 2;
+ memcpy(_vm->_frontBuf, _frameBuffer1, _frameSize);
_vm->_system->copyRectToScreen(_vm->_frontBuf, _width, x, y, _width, _height);
if ((_bgSoundStream == NULL) || ((_mixer->getSoundElapsedTime(_bgSound) * _frameRate) / 1000 < _frameNum + 1) ||