mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 06:51:09 +00:00
Title screen adjustments
- Don't show menu message on first tic of title startup
This commit is contained in:
parent
a9e5904d2f
commit
77be11d952
1 changed files with 7 additions and 7 deletions
|
|
@ -2104,7 +2104,8 @@ luahook:
|
|||
}
|
||||
LUA_HUD_DrawList(luahuddrawlist_title);
|
||||
|
||||
M_DrawMenuMessage();
|
||||
if (finalecount > 0)
|
||||
M_DrawMenuMessage();
|
||||
}
|
||||
|
||||
// (no longer) De-Demo'd Title Screen
|
||||
|
|
@ -2114,16 +2115,15 @@ void F_TitleScreenTicker(boolean run)
|
|||
|
||||
if (run)
|
||||
{
|
||||
finalecount++;
|
||||
|
||||
if (menumessage.fadetimer < 9)
|
||||
menumessage.fadetimer++;
|
||||
|
||||
if (finalecount == 1)
|
||||
if (finalecount == 0)
|
||||
{
|
||||
// Now start the music
|
||||
S_ChangeMusicInternal("_title", looptitle);
|
||||
}
|
||||
else if (menumessage.fadetimer < 9)
|
||||
menumessage.fadetimer++;
|
||||
|
||||
finalecount++;
|
||||
}
|
||||
|
||||
// don't trigger if doing anything besides idling on title
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue