mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 21:50:48 +00:00
Fix normal one-up sound playing in Mario mode
This commit is contained in:
parent
4ab667c6a0
commit
db6b0c6aa0
1 changed files with 3 additions and 3 deletions
|
@ -1491,10 +1491,10 @@ void P_PlayLivesJingle(player_t *player)
|
|||
if (player && !P_IsLocalPlayer(player))
|
||||
return;
|
||||
|
||||
if (use1upSound || cv_1upsound.value)
|
||||
S_StartSound(NULL, sfx_oneup);
|
||||
else if (mariomode)
|
||||
if (mariomode)
|
||||
S_StartSound(NULL, sfx_marioa);
|
||||
else if (use1upSound || cv_1upsound.value)
|
||||
S_StartSound(NULL, sfx_oneup);
|
||||
else
|
||||
{
|
||||
P_PlayJingle(player, JT_1UP);
|
||||
|
|
Loading…
Reference in a new issue