Fix video sequences shown by arcade machines

svn-id: r22092
This commit is contained in:
Travis Howell 2006-04-23 08:34:19 +00:00
parent a0ea9a4efc
commit b9fbf9091d

View File

@ -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) ||