diff options
author | Eugene Sandulenko | 2019-12-17 23:59:51 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-17 23:59:51 +0100 |
commit | 26d09314997fa236e10b9edbca4a135eb6c9370a (patch) | |
tree | 6ff1e1d9e24acf968ecd3a3a96d588c27d3ea7cf | |
parent | d17464e86bf0b6780945036fd828b02caa16e04a (diff) | |
download | scummvm-rg350-26d09314997fa236e10b9edbca4a135eb6c9370a.tar.gz scummvm-rg350-26d09314997fa236e10b9edbca4a135eb6c9370a.tar.bz2 scummvm-rg350-26d09314997fa236e10b9edbca4a135eb6c9370a.zip |
ENGINES: Added clarifying comment
-rw-r--r-- | engines/engine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp index cde528e1cd..a177f44f6e 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -261,6 +261,8 @@ void splashScreen() { // Delay 0.6 secs uint time0 = g_system->getMillis(); Common::Event event; + + // We must poll an event in order to have the window shown at least on Mac g_system->getEventManager()->pollEvent(event); while (time0 + 600 > g_system->getMillis()) { |