From c537a3701c405b5c235bd2d9291d82b5fb47cb31 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 26 Nov 2024 11:15:04 -0600 Subject: [PATCH] Fix replay mode black bg startup menu --- src/game/boe.startup.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/boe.startup.cpp b/src/game/boe.startup.cpp index e0a28483c..894cc5599 100644 --- a/src/game/boe.startup.cpp +++ b/src/game/boe.startup.cpp @@ -50,8 +50,13 @@ void handle_startup_button_click(eStartButton btn, eKeyMod mods) { std::string scen_name; bool force_party = false; + if(replaying){ + // Show the whole menu, not just a black bg, before handling the button click lightning-fast + put_background(); + draw_startup(0); + } draw_start_button(btn,5); - mainPtr.display(); // TODO: I suspect this won't work + mainPtr.display(); play_sound(37, time_in_ticks(5)); draw_start_button(btn,0); switch(btn) {