From c8d50d3067dbc139af6507cc2d754643e8cd10bb Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 4 May 2020 18:44:06 -0700 Subject: [PATCH] Re-draw tower background when dying in No Death Mode Otherwise, if you died after entering a room with a horizontal or vertical warp background (but not the all-sides warp background), the warp background would be the first thing you see when going to the Game Over screen, and would then start scrolling downwards with the proper tower background coming in from the top. This oversight seems to have always been in the game. Was No Death Mode actually tested? Like, did anyone ever play through the entire game without dying in the Warp Zone, or even AFTER completing the Warp Zone, like, ever? --- desktop_version/src/Script.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop_version/src/Script.cpp b/desktop_version/src/Script.cpp index ab5ff5fa..25fb51e7 100644 --- a/desktop_version/src/Script.cpp +++ b/desktop_version/src/Script.cpp @@ -2534,6 +2534,7 @@ void scriptclass::resetgametomenu() graphics.flipmode = false; obj.entities.clear(); graphics.fademode = 4; + map.tdrawback = true; game.createmenu(Menu::gameover); }