Merge branch 'fix-mute-musicdef' into 'master'

Don't show music credit on the pause menu if music is muted

Closes #1154

See merge request KartKrew/Kart!2112
This commit is contained in:
AJ Martinez 2024-03-16 10:26:02 +00:00
commit e1f4aef2ef

View file

@ -5661,7 +5661,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);
}