mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
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:
commit
e1f4aef2ef
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue