mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +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 x = Easing_OutQuad(mt, -BASEVIDWIDTH, 0);
|
||||||
INT32 y = 56;
|
INT32 y = 56;
|
||||||
|
|
||||||
if (g_realsongcredit)
|
if (g_realsongcredit && !S_MusicDisabled())
|
||||||
{
|
{
|
||||||
V_DrawThinString(x + 2, y, 0, g_realsongcredit);
|
V_DrawThinString(x + 2, y, 0, g_realsongcredit);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue