From 038abf80ba30a277420e0381312c0cfc2296811e Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sat, 29 Aug 2020 01:47:36 -0400 Subject: Give songs meaningful english names --- src/battle_gfx_sfx_util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/battle_gfx_sfx_util.c') 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) -- cgit v1.2.3