mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Put Misa at the top of GitHub Friends
This commit is contained in:
@@ -360,8 +360,21 @@ static void menurender(void)
|
||||
int totalheight = (endidx - startidx) * 14;
|
||||
int emptyspace = maxheight - totalheight;
|
||||
|
||||
int xofs = 80 - 16;
|
||||
int yofs = 40 + 20 + (emptyspace / 2);
|
||||
int xofs, yofs;
|
||||
|
||||
if (startidx == 0)
|
||||
{
|
||||
graphics.Print(-1, 60, Credits::githubfriends[0], tr, tg, tb, true);
|
||||
graphics.Print(-1, 80, Credits::githubfriends[2], tr, tg, tb, true);
|
||||
startidx += 4; // Skip the superfriends now that we've drawn them...
|
||||
xofs = 80 - 28;
|
||||
yofs = 80 + 20 + (emptyspace / 2);
|
||||
}
|
||||
else
|
||||
{
|
||||
xofs = 80 - 16;
|
||||
yofs = 40 + 20 + (emptyspace / 2);
|
||||
}
|
||||
|
||||
for (int i = startidx; i < endidx; ++i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user