mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Put Misa at the top of GitHub Friends
This commit is contained in:
parent
4c4f8de0d5
commit
b99abaf1d5
2 changed files with 19 additions and 3 deletions
|
@ -84,6 +84,10 @@ static const char* patrons[] = {
|
||||||
|
|
||||||
/* CONTRIBUTORS.txt, again listed alphabetically (according to `sort`) by last name */
|
/* CONTRIBUTORS.txt, again listed alphabetically (according to `sort`) by last name */
|
||||||
static const char* githubfriends[] = {
|
static const char* githubfriends[] = {
|
||||||
|
"Misa \"Info Teddy\" Elizabeth",
|
||||||
|
"",
|
||||||
|
"and",
|
||||||
|
"",
|
||||||
"Matt \"Fussmatte\" Aaldenberg", // TODO: Change to "Fußmatte" if/when UTF-8 support is added
|
"Matt \"Fussmatte\" Aaldenberg", // TODO: Change to "Fußmatte" if/when UTF-8 support is added
|
||||||
"AlexApps99",
|
"AlexApps99",
|
||||||
"AllyTally",
|
"AllyTally",
|
||||||
|
@ -103,7 +107,6 @@ static const char* githubfriends[] = {
|
||||||
"Keith Stellyes",
|
"Keith Stellyes",
|
||||||
"Elijah Stone",
|
"Elijah Stone",
|
||||||
"Thomas S|nger",
|
"Thomas S|nger",
|
||||||
"Info Teddy",
|
|
||||||
"Pierre-Alain TORET",
|
"Pierre-Alain TORET",
|
||||||
"leo60228",
|
"leo60228",
|
||||||
"Emmanuel Vadot",
|
"Emmanuel Vadot",
|
||||||
|
|
|
@ -360,8 +360,21 @@ static void menurender(void)
|
||||||
int totalheight = (endidx - startidx) * 14;
|
int totalheight = (endidx - startidx) * 14;
|
||||||
int emptyspace = maxheight - totalheight;
|
int emptyspace = maxheight - totalheight;
|
||||||
|
|
||||||
int xofs = 80 - 16;
|
int xofs, yofs;
|
||||||
int yofs = 40 + 20 + (emptyspace / 2);
|
|
||||||
|
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)
|
for (int i = startidx; i < endidx; ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue