mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
HOPKINS: Fix a couple of regressions in previous commit. Thanks fuzzie for noticing
This commit is contained in:
parent
40dcb8b406
commit
9addb1e776
@ -662,7 +662,8 @@ void AnimationManager::playSequence(const Common::String &file, uint32 rate1, ui
|
||||
|
||||
_vm->_eventsManager->_rateCounter = 0;
|
||||
_vm->_graphicsManager->lockScreen();
|
||||
_vm->_graphicsManager->copyVideoVbe16a(screenP);
|
||||
if (*screenP != kByteStop)
|
||||
_vm->_graphicsManager->copyVideoVbe16a(screenP);
|
||||
_vm->_graphicsManager->unlockScreen();
|
||||
|
||||
_vm->_graphicsManager->addRefreshRect(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
|
||||
@ -769,7 +770,8 @@ void AnimationManager::playSequence2(const Common::String &file, uint32 rate1, u
|
||||
|
||||
_vm->_eventsManager->_rateCounter = 0;
|
||||
_vm->_graphicsManager->lockScreen();
|
||||
_vm->_graphicsManager->copyVideoVbe16a(screenP);
|
||||
if (*screenP != kByteStop)
|
||||
_vm->_graphicsManager->copyVideoVbe16a(screenP);
|
||||
_vm->_graphicsManager->unlockScreen();
|
||||
|
||||
_vm->_graphicsManager->addRefreshRect(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
|
||||
|
Loading…
Reference in New Issue
Block a user