From 673699cef5846b835528936f22b070f689af0c6b Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 3 May 2021 19:12:30 -0700 Subject: [PATCH] Enable returning to Secret Lab immediately from Super Gravitron When you enter the Super Gravitron, you have to wait until the Super Gravitron actually starts before being able to press Enter to return to the Secret Lab. This is annoying if you just want to get back to the Secret Lab. So, I've made it so the press-Enter-to-return functionality is enabled from the moment that the Super Gravitron starts. --- desktop_version/src/Input.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop_version/src/Input.cpp b/desktop_version/src/Input.cpp index c1644cf6..432f3c2b 100644 --- a/desktop_version/src/Input.cpp +++ b/desktop_version/src/Input.cpp @@ -2064,7 +2064,8 @@ void gameinput(void) { // Do nothing } - else if (game.swnmode == 1 && game.swngame == 1) + else if (game.swnmode == 1 + && (game.swngame == 1 || game.swngame == 6 || game.swngame == 7)) { //quitting the super gravitron game.mapheld = true;