aboutsummaryrefslogtreecommitdiff
path: root/engines/touche
diff options
context:
space:
mode:
authorDavid Corrales2007-07-08 16:58:54 +0000
committerDavid Corrales2007-07-08 16:58:54 +0000
commit9bfe5d53540af7dc9bf0214202f4e35b272320ea (patch)
tree69dcaf6f735e9fd0913a3e2f163852d4b9af87e3 /engines/touche
parent256e4d9521b79160d1f9ed670656097a96dc5a34 (diff)
parent17da12ca07a1f18f3fe1ef5b0c2c0cd9fd8359b4 (diff)
downloadscummvm-rg350-9bfe5d53540af7dc9bf0214202f4e35b272320ea.tar.gz
scummvm-rg350-9bfe5d53540af7dc9bf0214202f4e35b272320ea.tar.bz2
scummvm-rg350-9bfe5d53540af7dc9bf0214202f4e35b272320ea.zip
Merged the FSNode branch with trunk r27681:27969
svn-id: r27970
Diffstat (limited to 'engines/touche')
-rw-r--r--engines/touche/ui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/touche/ui.cpp b/engines/touche/ui.cpp
index ef8f5a0d7d..15dc64aaf2 100644
--- a/engines/touche/ui.cpp
+++ b/engines/touche/ui.cpp
@@ -381,6 +381,11 @@ void ToucheEngine::handleOptions(int forceDisplay) {
}
}
}
+ if (doRedraw) {
+ redrawMenu(&menuData);
+ updateScreenArea(90, 102, 460, 196);
+ doRedraw = false;
+ }
Common::Event event;
while (_eventMan->pollEvent(event)) {
const Button *button = 0;
@@ -419,11 +424,6 @@ void ToucheEngine::handleOptions(int forceDisplay) {
break;
}
}
- if (doRedraw) {
- redrawMenu(&menuData);
- updateScreenArea(90, 102, 460, 196);
- doRedraw = false;
- }
_system->updateScreen();
_system->delayMillis(10);
}