M_Drawer: don't draw PAUSE graphic in the Stereo menu

This commit is contained in:
James R 2023-08-19 03:45:43 -07:00
parent 7f89bee3f2
commit d06185f5a3

View file

@ -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