aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/dialogue.cpp2
-rw-r--r--engines/parallaction/parallaction.cpp14
2 files changed, 8 insertions, 8 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp
index 2644c2145a..1e374c8d0d 100644
--- a/engines/parallaction/dialogue.cpp
+++ b/engines/parallaction/dialogue.cpp
@@ -457,7 +457,7 @@ void runDialogue(SpeakData *data) {
while (e.kbd.ascii != 0xD && passwordLen < MAX_PASSWORD_LENGTH) {
- // FIXME: see comment for updateInput()
+ // FIXME: see comment for updateInput()
if (!g_system->pollEvent(e)) continue;
if (e.type != OSystem::EVENT_KEYDOWN) continue;
if (e.type != OSystem::EVENT_QUIT) g_system->quit();
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);
}