mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-22 12:11:21 +00:00
Clean exit on Pico & Quest
and gold tier patron credit screen
This commit is contained in:
parent
deb2c35988
commit
fa74cf0559
3 changed files with 32 additions and 22 deletions
|
@ -184,8 +184,7 @@ int raze_main (int argc, char **argv)
|
|||
const int result = GameMain();
|
||||
|
||||
#ifdef __ANDROID__
|
||||
usleep(500* 1000);
|
||||
exit(0);
|
||||
usleep(1000* 1000);
|
||||
#endif
|
||||
|
||||
return result;
|
||||
|
|
|
@ -169,26 +169,6 @@ int RunEndoom()
|
|||
S_StopMusic(true);
|
||||
auto endoom = new FEndoomScreen(endoom_lump);
|
||||
endoom->Render(true);
|
||||
|
||||
/* while(true)
|
||||
{
|
||||
I_GetEvent();
|
||||
endoom->Update();
|
||||
while (eventtail != eventhead)
|
||||
{
|
||||
event_t *ev = &events[eventtail];
|
||||
eventtail = (eventtail + 1) & (MAXEVENTS - 1);
|
||||
|
||||
if (ev->type == EV_KeyDown || ev->type == EV_KeyUp)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
if (ev->type == EV_GUI_Event && (ev->subtype == EV_GUI_KeyDown || ev->subtype == EV_GUI_LButtonDown || ev->subtype == EV_GUI_RButtonDown || ev->subtype == EV_GUI_MButtonDown))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -506,6 +506,9 @@ OptionMenu "OptionsMenu" protected
|
|||
Submenu "$OS_TITLE", "os_Menu"
|
||||
StaticText " "
|
||||
Submenu "$MNU_ENGINECREDITS", "EngineCredits"
|
||||
StaticText " "
|
||||
Submenu "Team Beef Gold-Tier Patrons", "GoldTierCredits"
|
||||
StaticText " "
|
||||
SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults"
|
||||
SafeCommand "$OPTMNU_RESETTOSAVED", "reset2saved"
|
||||
//Command "$OPTMNU_CONSOLE", "menuconsole"
|
||||
|
@ -2108,6 +2111,34 @@ OptionMenu "MultiOptionsMenu"
|
|||
}
|
||||
*/
|
||||
|
||||
OptionMenu "GoldTierCredits"
|
||||
{
|
||||
title "$MNU_CREDITS"
|
||||
StaticText ""
|
||||
StaticText ""
|
||||
StaticText ""
|
||||
StaticText "Team Beef Gold Tier Patrons", 1
|
||||
StaticText ""
|
||||
StaticText "David Gohman Adam Luc Lowndes "
|
||||
StaticText "Sign of the Beefcarver Naughtynate350 Mike Gummelt "
|
||||
StaticText "CrashOrganism Russel Jones Joshua Vizanko "
|
||||
StaticText "GD Dragon Saeed Al-Ali Gabe Miller "
|
||||
StaticText "Jojo Mojo Andrew Remsen valedurandal "
|
||||
StaticText "Brian Sifrar Dominik Studer Tommy Green "
|
||||
StaticText "Cuttlersan Kalli Raya Lunar Stain "
|
||||
StaticText "iS ken fountain Ben Otter "
|
||||
StaticText "Emanuele Disco CharlieSayNo cranky_bum "
|
||||
StaticText "Jamie S EDavey BMF "
|
||||
StaticText "Jack Henaghan Loot Tester Charlie Bagwell "
|
||||
StaticText "Braxus Ryan Milke Emile Tixeuil "
|
||||
StaticText "Rex Keith Griffin Cole Edwards "
|
||||
StaticText "Max Spellbound1998 mrpapa "
|
||||
StaticText "Albert Valiev Duncan Mummery Stephen Sayles "
|
||||
StaticText "Markus Dickmann HUSSEIN MOSTAFA Adam Davidek "
|
||||
StaticText "Jack Henaghan Axis BayesianBroccoli "
|
||||
StaticText "Montain Gral Markus Gunther "
|
||||
}
|
||||
|
||||
OptionMenu "EngineCredits"
|
||||
{
|
||||
title "$MNU_CREDITS"
|
||||
|
|
Loading…
Reference in a new issue