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

sev- sev at scummvm.org
Sun Sep 22 23:16:55 CEST 2019


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:
b868400876 ENGINES: Disable event polling while splash screen is shown


Commit: b868400876f06a7f304175e4be39aad46af62946
    https://github.com/scummvm/scummvm/commit/b868400876f06a7f304175e4be39aad46af62946
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2019-09-22T23:16:52+02:00

Commit Message:
ENGINES: Disable event polling while splash screen is shown

Co-authored-by: jdgleaver <jdgleaver at users.noreply.github.com>

Changed paths:
    engines/engine.cpp


diff --git a/engines/engine.cpp b/engines/engine.cpp
index a1df63b..30cbb0b 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -270,7 +270,6 @@ void splashScreen() {
 	uint time0 = g_system->getMillis();
 	Common::Event event;
 	while (time0 + 600 > g_system->getMillis()) {
-		(void)g_system->getEventManager()->pollEvent(event);
 		g_system->delayMillis(10);
 	}
 	g_system->hideOverlay();





More information about the Scummvm-git-logs mailing list