summaryrefslogtreecommitdiff
path: root/src/battle_gfx_sfx_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/battle_gfx_sfx_util.c')
-rw-r--r--src/battle_gfx_sfx_util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/battle_gfx_sfx_util.c b/src/battle_gfx_sfx_util.c
index a2a48dd38..104a0eecf 100644
--- a/src/battle_gfx_sfx_util.c
+++ b/src/battle_gfx_sfx_util.c
@@ -795,7 +795,7 @@ void HandleLowHpMusicChange(struct Pokemon *pkmn, u8 b)
if (!ewram17800[b].unk0_1)
{
if (!ewram17800[b ^ 2].unk0_1)
- PlaySE(SE_HINSI);
+ PlaySE(SE_LOW_HEALTH);
ewram17800[b].unk0_1 = 1;
}
}
@@ -804,12 +804,12 @@ void HandleLowHpMusicChange(struct Pokemon *pkmn, u8 b)
ewram17800[b].unk0_1 = 0;
if (!IsDoubleBattle())
{
- m4aSongNumStop(SE_HINSI);
+ m4aSongNumStop(SE_LOW_HEALTH);
return;
}
if (IsDoubleBattle() && !ewram17800[b ^ 2].unk0_1)
{
- m4aSongNumStop(SE_HINSI);
+ m4aSongNumStop(SE_LOW_HEALTH);
return;
}
}
@@ -822,7 +822,7 @@ void BattleStopLowHpSound(void)
ewram17800[r4].unk0_1 = 0;
if (IsDoubleBattle())
ewram17800[r4 ^ 2].unk0_1 = 0;
- m4aSongNumStop(SE_HINSI);
+ m4aSongNumStop(SE_LOW_HEALTH);
}
u8 unref_sub_8032604(struct Pokemon *pkmn)