1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 01:59:43 +01:00

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?
This commit is contained in:
Misa 2020-05-04 18:44:06 -07:00 committed by Ethan Lee
parent dc19a51d38
commit c8d50d3067

View file

@ -2534,6 +2534,7 @@ void scriptclass::resetgametomenu()
graphics.flipmode = false; graphics.flipmode = false;
obj.entities.clear(); obj.entities.clear();
graphics.fademode = 4; graphics.fademode = 4;
map.tdrawback = true;
game.createmenu(Menu::gameover); game.createmenu(Menu::gameover);
} }