mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Let Profile menu music play in the Tutorial
This commit is contained in:
parent
b48924f539
commit
f052228854
1 changed files with 4 additions and 3 deletions
|
|
@ -436,8 +436,7 @@ void M_PlayMenuJam(void)
|
||||||
|
|
||||||
const boolean trulystarted = M_GameTrulyStarted();
|
const boolean trulystarted = M_GameTrulyStarted();
|
||||||
const boolean profilemode = (
|
const boolean profilemode = (
|
||||||
trulystarted
|
optionsmenu.profilemenu
|
||||||
&& optionsmenu.profilemenu
|
|
||||||
&& !optionsmenu.resetprofilemenu
|
&& !optionsmenu.resetprofilemenu
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -449,7 +448,9 @@ void M_PlayMenuJam(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!trulystarted)
|
// trulystarted == false in the Tutorial.
|
||||||
|
// But profile menu music should play during the Tutorial (Playing()).
|
||||||
|
if (!trulystarted && !Playing())
|
||||||
{
|
{
|
||||||
if (M_GonerMusicPlayable() && NotCurrentlyPlaying("_GONER"))
|
if (M_GonerMusicPlayable() && NotCurrentlyPlaying("_GONER"))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue