mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-28 02:32:48 +00:00
Menus/Pause: never show musicdef if music is muted
- If music is muted after the musicdef appeared, the text would get frozen in its current state - Don't draw the frozen state
This commit is contained in:
parent
1da7a5c1da
commit
fe878e6d6a
1 changed files with 1 additions and 1 deletions
|
|
@ -5656,7 +5656,7 @@ void M_DrawPause(void)
|
|||
INT32 x = Easing_OutQuad(mt, -BASEVIDWIDTH, 0);
|
||||
INT32 y = 56;
|
||||
|
||||
if (g_realsongcredit)
|
||||
if (g_realsongcredit && !S_MusicDisabled())
|
||||
{
|
||||
V_DrawThinString(x + 2, y, 0, g_realsongcredit);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue