[Scummvm-cvs-logs] scummvm master -> 76e2867c07e2fa80bd98f456984e519a579167da

bgK bastien.bouclet at gmail.com
Sun Apr 17 11:57:01 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
76e2867c07 MOHAWK: Update the screen immediatly when changing stacks


Commit: 76e2867c07e2fa80bd98f456984e519a579167da
    https://github.com/scummvm/scummvm/commit/76e2867c07e2fa80bd98f456984e519a579167da
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2016-04-17T11:55:49+02:00

Commit Message:
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.

Changed paths:
    engines/mohawk/myst.cpp



diff --git a/engines/mohawk/myst.cpp b/engines/mohawk/myst.cpp
index e2bc88e..633b67f 100644
--- a/engines/mohawk/myst.cpp
+++ b/engines/mohawk/myst.cpp
@@ -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;
 		}
 	}
 






More information about the Scummvm-git-logs mailing list