mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Add _ to the record and nights attack tracks for organization
This commit is contained in:
parent
abfa5e10b6
commit
807614d02d
1 changed files with 4 additions and 4 deletions
|
@ -2252,9 +2252,9 @@ void M_InitMenuPresTables(void)
|
|||
menupres[i].muslooping = true;
|
||||
}
|
||||
if (i == MN_SP_TIMEATTACK)
|
||||
strncpy(menupres[i].musname, "recatk", 7);
|
||||
strncpy(menupres[i].musname, "_recat", 7);
|
||||
else if (i == MN_SP_NIGHTSATTACK)
|
||||
strncpy(menupres[i].musname, "nitatk", 7);
|
||||
strncpy(menupres[i].musname, "_nitat", 7);
|
||||
else if (i == MN_SP_PLAYER)
|
||||
strncpy(menupres[i].musname, "_chsel", 7);
|
||||
}
|
||||
|
@ -8503,7 +8503,7 @@ void M_DrawTimeAttackMenu(void)
|
|||
curbgxspeed = 0;
|
||||
curbgyspeed = 18;
|
||||
|
||||
M_ChangeMenuMusic("recatk", true); // Eww, but needed for when user hits escape during demo playback
|
||||
M_ChangeMenuMusic("_recat", true); // Eww, but needed for when user hits escape during demo playback
|
||||
|
||||
if (curbgcolor >= 0)
|
||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, curbgcolor);
|
||||
|
@ -8714,7 +8714,7 @@ void M_DrawNightsAttackMenu(void)
|
|||
|
||||
M_SetMenuCurBackground("NTSATKBG");
|
||||
|
||||
M_ChangeMenuMusic("nitatk", true); // Eww, but needed for when user hits escape during demo playback
|
||||
M_ChangeMenuMusic("_nitat", true); // Eww, but needed for when user hits escape during demo playback
|
||||
|
||||
M_DrawNightsAttackBackground();
|
||||
if (curfadevalue)
|
||||
|
|
Loading…
Reference in a new issue