diff options
author | Travis Howell | 2006-04-23 08:34:19 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-23 08:34:19 +0000 |
commit | b9fbf9091d46d1ecd6927c11f8cd3a4ccfe49abf (patch) | |
tree | 2ae4c854fceb93d854342cffc9f8b963815241d5 /engines/simon | |
parent | a0ea9a4efc5462d53749f9acbf5ed7f0e05e44d0 (diff) | |
download | scummvm-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/simon')
-rw-r--r-- | engines/simon/animation.cpp | 1 |
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) || |