From 0ed089297746050f34cd78671b99339e8974f957 Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 1 Oct 2021 21:13:51 -0700 Subject: [PATCH] Add impossible message for quicksave screen in time trials It is impossible to get on the quicksave screen in time trials, because Enter is always bound to restarting time trials in a time trial, and there's no way to open the map screen otherwise. So, I've decided to add a fun little message in case someone somehow manages to get to this screen in a time trial. --- desktop_version/src/Render.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Render.cpp b/desktop_version/src/Render.cpp index 92897768..28d606b0 100644 --- a/desktop_version/src/Render.cpp +++ b/desktop_version/src/Render.cpp @@ -2499,7 +2499,7 @@ void maprender(void) } if (game.intimetrial) { - graphics.Print(0, 115, "Cannot Save in Time Trial", 146, 146, 180, true); + graphics.Print(0, 115, "How did you get on this screen?", 146, 146, 180, true); break; } if (game.insecretlab)