From 4896f475ca2378ec04e8ce07d45bcd0197b6194d Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 5 Mar 2021 00:54:25 -0800 Subject: [PATCH] Fix returning from game pad options not updating tower color I was looking through all calls to game.returnmenu(), and I noticed that the return option in the game pad screen didn't have a map.nexttowercolour(). I tested it and, yep, returning from there doesn't update the background color. So that should be fixed now. --- desktop_version/src/Input.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop_version/src/Input.cpp b/desktop_version/src/Input.cpp index 09147566..f1476639 100644 --- a/desktop_version/src/Input.cpp +++ b/desktop_version/src/Input.cpp @@ -1233,6 +1233,7 @@ static void menuactionpress(void) case 5: music.playef(11); game.returnmenu(); + map.nexttowercolour(); break; } break;