aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-02-17 16:06:34 +0000
committerTorbjörn Andersson2007-02-17 16:06:34 +0000
commit24a36cbb3f210d5fdcb29f1ece987224f05b9fc9 (patch)
tree56aade3fa778a54abe261a510082a849b77a03fc /engines
parente29ddfe1569fdfc65cf69bf1e4bc333db6e8c0f3 (diff)
downloadscummvm-rg350-24a36cbb3f210d5fdcb29f1ece987224f05b9fc9.tar.gz
scummvm-rg350-24a36cbb3f210d5fdcb29f1ece987224f05b9fc9.tar.bz2
scummvm-rg350-24a36cbb3f210d5fdcb29f1ece987224f05b9fc9.zip
Changed spaces to tabs again.
svn-id: r25656
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);
}