METAENGINE: Hint the compiler that we intentionally ignore pollEvents() return value
This commit is contained in:
parent
51dca83011
commit
0d369f716e
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ void splashScreen() {
|
||||||
Common::Event event;
|
Common::Event event;
|
||||||
while (time0 + 600 > g_system->getMillis()) {
|
while (time0 + 600 > g_system->getMillis()) {
|
||||||
g_system->updateScreen();
|
g_system->updateScreen();
|
||||||
g_system->getEventManager()->pollEvent(event);
|
(void)g_system->getEventManager()->pollEvent(event);
|
||||||
g_system->delayMillis(10);
|
g_system->delayMillis(10);
|
||||||
}
|
}
|
||||||
g_system->hideOverlay();
|
g_system->hideOverlay();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue