diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword1/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp index 9d196d39be..498f185f70 100644 --- a/engines/sword1/animation.cpp +++ b/engines/sword1/animation.cpp @@ -348,9 +348,9 @@ void MoviePlayerDXA::processFrame(void) { } void MoviePlayerDXA::updateScreen(void) { - // Using _frameBuffer1 directly should work, as long as we don't do any + // Using _scaledBuffer directly should work, as long as we don't do any // post-processing of the frame. - _sys->copyRectToScreen(_frameBuffer1, _frameWidth, _frameX, _frameY, _frameWidth, _frameHeight); + _sys->copyRectToScreen(_scaledBuffer, _frameWidth, _frameX, _frameY, _frameWidth, _frameHeight); _sys->updateScreen(); } |