mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
- hook up -nologo.
This commit is contained in:
parent
5fdd69cbbb
commit
ca21852945
3 changed files with 10 additions and 8 deletions
|
@ -1153,7 +1153,7 @@ void G_DisplayExtraScreens(void)
|
|||
|
||||
void gameDisplay3DRScreen()
|
||||
{
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
|
||||
|
@ -1325,7 +1325,7 @@ void G_DisplayLogo(void)
|
|||
FX_StopAllSounds(); // JBF 20031228
|
||||
S_ClearSoundLocks(); // JBF 20031228
|
||||
|
||||
if (!g_noLogo /* && (!g_netServer && ud.multimode < 2) */ &&
|
||||
if (!g_noLogo && !userConfig.nologo /* && (!g_netServer && ud.multimode < 2) */ &&
|
||||
VM_OnEventWithReturn(EVENT_MAINMENUSCREEN, g_player[myconnectindex].ps->i, myconnectindex, 0) == 0 &&
|
||||
(logoflags & LOGO_ENABLED))
|
||||
{
|
||||
|
|
|
@ -1170,7 +1170,7 @@ void G_DisplayLogo(void)
|
|||
return;
|
||||
if (RR)
|
||||
{
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
Anim_Play("rr_intro.anm");
|
||||
|
@ -1183,7 +1183,7 @@ void G_DisplayLogo(void)
|
|||
FX_StopAllSounds();
|
||||
S_ClearSoundLocks();
|
||||
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
Anim_Play("redneck.anm");
|
||||
|
@ -1196,7 +1196,7 @@ void G_DisplayLogo(void)
|
|||
FX_StopAllSounds();
|
||||
S_ClearSoundLocks();
|
||||
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
Anim_Play("xatlogo.anm");
|
||||
|
@ -1217,13 +1217,13 @@ void G_DisplayLogo(void)
|
|||
videoClearScreen(0L);
|
||||
return;
|
||||
}
|
||||
if (!g_noLogo /* && (!g_netServer && ud.multimode < 2) */)
|
||||
if (!g_noLogo && !userConfig.nologo /* && (!g_netServer && ud.multimode < 2) */)
|
||||
{
|
||||
#ifndef EDUKE32_TOUCH_DEVICES
|
||||
if (VOLUMEALL)
|
||||
#endif
|
||||
{
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
Anim_Play("logo.anm");
|
||||
|
@ -1242,7 +1242,7 @@ void G_DisplayLogo(void)
|
|||
//g_player[myconnectindex].ps->palette = drealms;
|
||||
//G_FadePalette(0,0,0,252);
|
||||
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0)
|
||||
if (!inputState.CheckAllInput() && g_noLogoAnim == 0 && !userConfig.nologo)
|
||||
{
|
||||
Net_GetPackets();
|
||||
|
||||
|
|
|
@ -1438,6 +1438,7 @@ void LogoLevel(void)
|
|||
char called;
|
||||
int fin;
|
||||
|
||||
if (userConfig.nologo) return;
|
||||
DSPRINTF(ds,"LogoLevel...");
|
||||
MONO_PRINT(ds);
|
||||
|
||||
|
@ -1690,6 +1691,7 @@ short PlayerQuitMenuLevel = -1;
|
|||
|
||||
void IntroAnimLevel(void)
|
||||
{
|
||||
if (userConfig.nologo) return;
|
||||
DSPRINTF(ds,"IntroAnimLevel");
|
||||
MONO_PRINT(ds);
|
||||
playanm(0);
|
||||
|
|
Loading…
Reference in a new issue