aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2016-02-18 10:27:03 +0100
committerEugene Sandulenko2016-02-18 10:30:35 +0100
commit0d369f716e37f5555ee636d75a3d40e3f3ff0e5f (patch)
tree0d8912fa931400fc8140adcb7ec16c36f5572e6d /engines
parent51dca8301190736ffe5fb09c986452957aa05017 (diff)
downloadscummvm-rg350-0d369f716e37f5555ee636d75a3d40e3f3ff0e5f.tar.gz
scummvm-rg350-0d369f716e37f5555ee636d75a3d40e3f3ff0e5f.tar.bz2
scummvm-rg350-0d369f716e37f5555ee636d75a3d40e3f3ff0e5f.zip
METAENGINE: Hint the compiler that we intentionally ignore pollEvents() return value
Diffstat (limited to 'engines')
-rw-r--r--engines/engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp
index 475cc77064..d3b9b113cf 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -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();