diff options
Diffstat (limited to 'engines/parallaction/parallaction.cpp')
-rw-r--r-- | engines/parallaction/parallaction.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index 29bd30ba93..5c925e70a1 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -358,7 +358,7 @@ uint16 Parallaction::updateInput() { break; case OSystem::EVENT_QUIT: - _system->quit(); + _system->quit(); break; default: @@ -380,13 +380,13 @@ void waitUntilLeftClick() { for (;;) { g_system->pollEvent(e); - if (e.type == OSystem::EVENT_LBUTTONUP) - break; + if (e.type == OSystem::EVENT_LBUTTONUP) + break; - if (e.type == OSystem::EVENT_QUIT) { - g_system->quit(); - break; - } + if (e.type == OSystem::EVENT_QUIT) { + g_system->quit(); + break; + } g_system->delayMillis(10); } |