From 6fe343d82dda5c819a4354ec082f43b21edb4d96 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sun, 23 Mar 2025 00:06:16 -0400 Subject: [PATCH] Bad commit previously, but not minimap updates. --- gui_fsm.cpp | 1 + map_view.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/gui_fsm.cpp b/gui_fsm.cpp index c472ed4..5eeb889 100644 --- a/gui_fsm.cpp +++ b/gui_fsm.cpp @@ -398,6 +398,7 @@ namespace gui { $status_ui.update_level($level); $map_ui.update_level($level); + $mini_map.update_level($level); $combat_ui.update_level($level); $main_ui.update_level($level); diff --git a/map_view.cpp b/map_view.cpp index 3c719a1..bf889f9 100644 --- a/map_view.cpp +++ b/map_view.cpp @@ -53,6 +53,7 @@ namespace gui { auto& map_text = $gui.get(grid); map_text.update(map_out); + $gui.render(window); // $gui.debug_layout(window); }