mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-09 08:22:28 +00:00
Merge branch 'pause-graphic-sound-test' into 'master'
Don't draw PAUSE graphic in the Stereo menu See merge request KartKrew/Kart!1407
This commit is contained in:
commit
9c14fe1aeb
1 changed files with 7 additions and 1 deletions
|
|
@ -816,7 +816,13 @@ void M_Drawer(void)
|
|||
// draw pause pic
|
||||
if (paused && !demo.playback && (menuactive || cv_showhud.value))
|
||||
{
|
||||
M_DrawPausedText(0);
|
||||
// Don't cover the Stereo player!
|
||||
boolean stereo_open = menuactive && currentMenu == &MISC_SoundTestDef;
|
||||
|
||||
if (stereo_open == false)
|
||||
{
|
||||
M_DrawPausedText(0);
|
||||
}
|
||||
}
|
||||
|
||||
// focus lost notification goes on top of everything, even the former everything
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue