From db8d46fc3987f07efdd9a262c56a47cbe17d0fc7 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 6 Sep 2020 11:19:22 -0700 Subject: [PATCH] LURE: Add missing if block brackets --- engines/lure/menu.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp index ea4d3b4f206..12a2fd44e95 100644 --- a/engines/lure/menu.cpp +++ b/engines/lure/menu.cpp @@ -599,9 +599,10 @@ uint16 PopupMenu::Show(int numEntries, const char *actions[]) { if (r.contains(x, y)) { selectedIndex = (y - r.top) / FONT_HEIGHT; - if (e.type() == Common::EVENT_LBUTTONDOWN) + if (e.type() == Common::EVENT_LBUTTONDOWN) { bailOut = true; break; + } } #else } else if ((e.type() == Common::EVENT_LBUTTONDOWN) ||