From 5abe615507abc89313bfb2ae7bfdf6e7f39250cf Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 31 Aug 2021 23:23:27 -0700 Subject: [PATCH] Fix Pauli Kohberger's name stopping being drawn too early This is because the y-position of the graphics.onscreen() check was a little too high. Then their name (under Beta Testing) would suddenly disappear too early. You'd have to look real close to spot it, but it does happen. It's cuz the credits are all kinda hardcoded, which is probably bad, but fixing that would have to come later... --- 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 ad2d7ec7..a60cc1ea 100644 --- a/desktop_version/src/Render.cpp +++ b/desktop_version/src/Render.cpp @@ -1563,7 +1563,7 @@ void gamecompleterender(void) } - if (graphics.onscreen(760 + position)) + if (graphics.onscreen(770 + position)) { graphics.Print(40, 760 + position, "Beta Testing by", tr, tg, tb); graphics.bigprint(60, 770 + position, "Sam Kaplan", tr, tg, tb);