mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 00:19:43 +01:00
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...
This commit is contained in:
parent
e78de4662c
commit
80ea585085
1 changed files with 1 additions and 1 deletions
|
@ -1572,7 +1572,7 @@ void gamecompleterender(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (graphics.onscreen(740 + position))
|
if (graphics.onscreen(750 + position))
|
||||||
{
|
{
|
||||||
graphics.Print(40, 740 + position, "Beta Testing by", tr, tg, tb);
|
graphics.Print(40, 740 + position, "Beta Testing by", tr, tg, tb);
|
||||||
graphics.bigprint(60, 750 + position, "Sam Kaplan", tr, tg, tb);
|
graphics.bigprint(60, 750 + position, "Sam Kaplan", tr, tg, tb);
|
||||||
|
|
Loading…
Reference in a new issue