[Scummvm-git-logs] scummvm master -> e2d1ee5b19ef581f26f87a1d652464495e64dd97

sev- sev at scummvm.org
Sat Jun 23 14:50:41 CEST 2018


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:
e2d1ee5b19 ENGINE: Improvements to splashscreen displaying


Commit: e2d1ee5b19ef581f26f87a1d652464495e64dd97
    https://github.com/scummvm/scummvm/commit/e2d1ee5b19ef581f26f87a1d652464495e64dd97
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2018-06-23T14:50:34+02:00

Commit Message:
ENGINE: Improvements to splashscreen displaying

Changed paths:
    engines/engine.cpp


diff --git a/engines/engine.cpp b/engines/engine.cpp
index 8f412ba..99f2713 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -259,11 +259,12 @@ void splashScreen() {
 	logo->free();
 	delete logo;
 
+	g_system->updateScreen();
+
 	// Delay 0.6 secs
 	uint time0 = g_system->getMillis();
 	Common::Event event;
 	while (time0 + 600 > g_system->getMillis()) {
-		g_system->updateScreen();
 		(void)g_system->getEventManager()->pollEvent(event);
 		g_system->delayMillis(10);
 	}





More information about the Scummvm-git-logs mailing list