mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Add Nuke.YKT to thanks section in credits and move pogokeen to active developers
This also cleans up the code for MENU_CREDITS4 so that it's significantly easier to alter in the future if needed. git-svn-id: https://svn.eduke32.com/eduke32@7389 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a206a83020
commit
e33fed3bf8
1 changed files with 19 additions and 12 deletions
|
@ -2621,23 +2621,30 @@ static void Menu_PreDraw(MenuID_t cm, MenuEntry_t *entry, const vec2_t origin)
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case MENU_CREDITS4: // JBF 20031220
|
case MENU_CREDITS4: // JBF 20031220
|
||||||
l = 7;
|
{
|
||||||
|
#define MENU_YOFFSET 40
|
||||||
|
#define MENU_INCREMENT(x) (oy += ((x) << 16)) // maybe this should have been MENU_EXCREMENT instead
|
||||||
|
|
||||||
mgametextcenter(origin.x, origin.y + ((50-l)<<16), "Developers");
|
int32_t oy = origin.y;
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((50+10-l)<<16), "Richard \"TerminX\" Gobeille", 8);
|
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((50+7+10-l)<<16), "Evan \"Hendricks266\" Ramos", 8);
|
|
||||||
|
|
||||||
mgametextcenter(origin.x, origin.y + ((80-l)<<16), "Retired developers");
|
mgametextcenter(origin.x, MENU_INCREMENT(MENU_YOFFSET), "Developers");
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((80+10-l)<<16), "Pierre-Loup \"Plagman\" Griffais", 8);
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(11), "Richard \"TerminX\" Gobeille", 8);
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((80+7+10-l)<<16), "Philipp \"Helixhorned\" Kutin", 8);
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(7), "Evan \"Hendricks266\" Ramos", 8);
|
||||||
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(7), "Alex \"pogokeen\" Dawson", 8);
|
||||||
|
|
||||||
mgametextcenter(origin.x, origin.y + ((130+7-l)<<16), "Special thanks to");
|
mgametextcenter(origin.x, MENU_INCREMENT(11), "Retired developers");
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((130+7+10-l)<<16), "Jonathon \"JonoF\" Fowler", 8);
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(11), "Pierre-Loup \"Plagman\" Griffais", 8);
|
||||||
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(7), "Philipp \"Helixhorned\" Kutin", 8);
|
||||||
|
|
||||||
mgametextcenter(origin.x, origin.y + ((150+7-l)<<16), "Uses BUILD Engine technology by");
|
mgametextcenter(origin.x, MENU_INCREMENT(11), "Special thanks to");
|
||||||
creditsminitext(origin.x + (160<<16), origin.y + ((150+7+10-l)<<16), "Ken \"Awesoken\" Silverman", 8);
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(11), "Jonathon \"JonoF\" Fowler", 8);
|
||||||
|
|
||||||
|
mgametextcenter(origin.x, MENU_INCREMENT(11), "Uses BUILD Engine technology by");
|
||||||
|
creditsminitext(origin.x + (160 << 16), MENU_INCREMENT(11), "Ken \"Awesoken\" Silverman", 8);
|
||||||
|
|
||||||
|
#undef MENU_INCREMENT
|
||||||
|
#undef MENU_YOFFSET
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MENU_CREDITS5:
|
case MENU_CREDITS5:
|
||||||
|
@ -2657,7 +2664,7 @@ static void Menu_PreDraw(MenuID_t cm, MenuEntry_t *entry, const vec2_t origin)
|
||||||
};
|
};
|
||||||
static const char *body[] =
|
static const char *body[] =
|
||||||
{
|
{
|
||||||
"Alex Dawson", // "pogokeen" - Polymost2, renderer work, bugfixes
|
"Alexey Khokholov", // Nuke.YKT - Polymost fixes
|
||||||
"Bioman", // GTK work, APT repository and package upkeep
|
"Bioman", // GTK work, APT repository and package upkeep
|
||||||
"Brandon Bergren", // "Bdragon" - tiles.cfg
|
"Brandon Bergren", // "Bdragon" - tiles.cfg
|
||||||
"Charlie Honig", // "CONAN" - showview command
|
"Charlie Honig", // "CONAN" - showview command
|
||||||
|
|
Loading…
Reference in a new issue