1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-11-05 02:39:41 +01:00

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.
This commit is contained in:
Misa 2021-08-24 09:24:20 -07:00
parent 676294332f
commit d472363542

View file

@ -120,7 +120,7 @@ static const char* githubfriends[] = {
}; };
/* Calculate credits length, finally. */ /* 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) SDL_arraysize(superpatrons) + SDL_arraysize(patrons) + SDL_arraysize(githubfriends)
)); ));