mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
- fixed: Entering the menu from SW's intro may not stop the sound.
This is a singular special case, everything else must do it. Fixes #335
This commit is contained in:
parent
cdd2329b63
commit
b54fd2f054
1 changed files with 6 additions and 1 deletions
|
@ -676,7 +676,12 @@ void GameInterface::Startup()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!userConfig.nologo) Logo([](bool) { gameaction = ga_mainmenu; });
|
if (!userConfig.nologo) Logo([](bool)
|
||||||
|
{
|
||||||
|
gamestate = GS_MENUSCREEN;
|
||||||
|
M_StartControlPanel(false);
|
||||||
|
M_SetMenu(NAME_Mainmenu);
|
||||||
|
});
|
||||||
else gameaction = ga_mainmenu;
|
else gameaction = ga_mainmenu;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue