aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/lure/menu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp
index 76b1d78823..7d0816ee79 100644
--- a/engines/lure/menu.cpp
+++ b/engines/lure/menu.cpp
@@ -584,12 +584,12 @@ uint16 PopupMenu::Show(int numEntries, const char *actions[]) {
} else if (e.type() == Common::EVENT_LBUTTONDOWN || e.type() == Common::EVENT_MOUSEMOVE) {
int16 x = mouse.x();
int16 y = mouse.y() - yMiddle + (s->height() / 2);
+ refreshFlag = true;
+
if (r.contains(x, y)) {
selectedIndex = (y - r.top) / FONT_HEIGHT;
if (e.type() == Common::EVENT_LBUTTONDOWN)
goto bail_out;
- else
- refreshFlag = true;
}
#else
} else if ((e.type() == Common::EVENT_LBUTTONDOWN) ||