MOHAWK: Update the screen immediatly when changing stacks

This fixes the linking sound being played before the new age is displayed.

Thanks to rootfather for noticing.
This commit is contained in:
Bastien Bouclet 2016-04-03 13:33:21 +02:00
parent a9ebd7a122
commit 76e2867c07

View File

@ -604,7 +604,8 @@ void MohawkEngine_Myst::changeToCard(uint16 card, TransitionType transition) {
_gfx->runTransition(transition, Common::Rect(544, 333), 10, 0);
} else {
_gfx->copyBackBufferToScreen(Common::Rect(544, 333));
_needsUpdate = true;
_system->updateScreen();
_needsUpdate = false;
}
}