From 47460143e2b1e027853af74c228e00e75f326d65 Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 11 Jun 2021 15:07:08 -0700 Subject: [PATCH] Fix being able to see box corners on map screen with custom graphics The text box drawn at the bottom of the map screen isn't wide enough, so it's possible to see the corners on the right side of the text box if you have custom graphics like I do. The solution is to increase the width of the text box by one tile. --- 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 0dff1ee6..cf421ba4 100644 --- a/desktop_version/src/Render.cpp +++ b/desktop_version/src/Render.cpp @@ -1931,7 +1931,7 @@ void maprender(void) //Menubar: - graphics.drawtextbox( -10, 212, 42, 3, 65, 185, 207); + graphics.drawtextbox( -10, 212, 43, 3, 65, 185, 207); // Draw the selected page name at the bottom // menupage 0 - 3 is the pause screen