diff --git a/desktop_version/src/Credits.h b/desktop_version/src/Credits.h index 894a334f..3686452e 100644 --- a/desktop_version/src/Credits.h +++ b/desktop_version/src/Credits.h @@ -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", diff --git a/desktop_version/src/Render.cpp b/desktop_version/src/Render.cpp index 67e6ab87..782fcb5d 100644 --- a/desktop_version/src/Render.cpp +++ b/desktop_version/src/Render.cpp @@ -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) {