1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00

Put Misa at the top of GitHub Friends

This commit is contained in:
Ethan Lee 2021-03-31 02:43:05 -04:00
parent 4c4f8de0d5
commit b99abaf1d5
2 changed files with 19 additions and 3 deletions

View File

@ -84,6 +84,10 @@ static const char* patrons[] = {
/* CONTRIBUTORS.txt, again listed alphabetically (according to `sort`) by last name */
static const char* githubfriends[] = {
"Misa \"Info Teddy\" Elizabeth",
"",
"and",
"",
"Matt \"Fussmatte\" Aaldenberg", // TODO: Change to "Fußmatte" if/when UTF-8 support is added
"AlexApps99",
"AllyTally",
@ -103,7 +107,6 @@ static const char* githubfriends[] = {
"Keith Stellyes",
"Elijah Stone",
"Thomas S|nger",
"Info Teddy",
"Pierre-Alain TORET",
"leo60228",
"Emmanuel Vadot",

View File

@ -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)
{