From 8b05b5be9ad31221bd5ecdddc32d39ebb59336de Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Fri, 23 Aug 2024 22:03:07 -0500 Subject: [PATCH] help menu items record show_dialog_action --- src/game/boe.main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index c680b197..10c75341 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -825,8 +825,7 @@ void handle_menu_choice(eMenu item_hit) { break; } if(!dialogToShow.empty()) { - cChoiceDlog dlog(dialogToShow); - dlog.show(); + show_dialog_action(dialogToShow); } }