mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-04 07:52:22 +00:00
Merge branch 'mario1up' into 'next'
Fix normal one-up sound playing in Mario mode See merge request STJr/SRB2!1272
This commit is contained in:
commit
a8f61b9f7b
1 changed files with 3 additions and 3 deletions
|
|
@ -1491,10 +1491,10 @@ void P_PlayLivesJingle(player_t *player)
|
||||||
if (player && !P_IsLocalPlayer(player))
|
if (player && !P_IsLocalPlayer(player))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (use1upSound || cv_1upsound.value)
|
if (mariomode)
|
||||||
S_StartSound(NULL, sfx_oneup);
|
|
||||||
else if (mariomode)
|
|
||||||
S_StartSound(NULL, sfx_marioa);
|
S_StartSound(NULL, sfx_marioa);
|
||||||
|
else if (use1upSound || cv_1upsound.value)
|
||||||
|
S_StartSound(NULL, sfx_oneup);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
P_PlayJingle(player, JT_1UP);
|
P_PlayJingle(player, JT_1UP);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue