mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
M_Drawer: don't draw PAUSE graphic in the Stereo menu
This commit is contained in:
parent
7f89bee3f2
commit
d06185f5a3
1 changed files with 7 additions and 1 deletions
|
|
@ -816,7 +816,13 @@ void M_Drawer(void)
|
||||||
// draw pause pic
|
// draw pause pic
|
||||||
if (paused && !demo.playback && (menuactive || cv_showhud.value))
|
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
|
// focus lost notification goes on top of everything, even the former everything
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue