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:
parent
676294332f
commit
d472363542
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue