Skip to content

Commit

Permalink
METAENGINE: Hint the compiler that we intentionally ignore pollEvents…
Browse files Browse the repository at this point in the history
…() return value
  • Loading branch information
sev- committed Feb 18, 2016
1 parent 51dca83 commit 0d369f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/engine.cpp
Expand Up @@ -292,7 +292,7 @@ void splashScreen() {
Common::Event event;
while (time0 + 600 > g_system->getMillis()) {
g_system->updateScreen();
g_system->getEventManager()->pollEvent(event);
(void)g_system->getEventManager()->pollEvent(event);
g_system->delayMillis(10);
}
g_system->hideOverlay();
Expand Down

0 comments on commit 0d369f7

Please sign in to comment.