From d47236354261cb09c450fc9e9784d3235aa588ad Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 24 Aug 2021 09:24:20 -0700 Subject: [PATCH] Fix positioning of "Thanks for playing!" When the screen reached the bottom of the credits, it ended up being 10 pixels higher (and not perfectly centered) than in 2.2 and previous. --- desktop_version/src/Credits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Credits.h b/desktop_version/src/Credits.h index e5e2451e..fca25ea0 100644 --- a/desktop_version/src/Credits.h +++ b/desktop_version/src/Credits.h @@ -120,7 +120,7 @@ static const char* githubfriends[] = { }; /* Calculate credits length, finally. */ -static const int creditmaxposition = 1050 + (10 * ( +static const int creditmaxposition = 1040 + (10 * ( SDL_arraysize(superpatrons) + SDL_arraysize(patrons) + SDL_arraysize(githubfriends) ));