From a2c5bb3ed7ea1c83b8dfa0282216bb83b2c7d10d Mon Sep 17 00:00:00 2001 From: josefwk Date: Sun, 2 Feb 2025 12:51:24 -0600 Subject: [PATCH] Modified the UI redraw order in handle_death() to fix #250 and #558. (#560) Fix #250 Fix #558 --- src/game/boe.actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index 1b34cf19..1ce70fa3 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -3225,6 +3225,7 @@ void handle_death() { std::string choice; overall_mode = MODE_STARTUP; + reload_startup(); while(true) { // Use death (or leave Exile) dialog @@ -3246,7 +3247,6 @@ void handle_death() { else if(choice == "new") { // TODO: Windows version dumps to main screen without creating a party; which is better? start_new_game(); - reload_startup(); return; } }