diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
commit | 038abf80ba30a277420e0381312c0cfc2296811e (patch) | |
tree | ab951530e74209c0da170bc74ddd8b5a456bab9a /src/battle_gfx_sfx_util.c | |
parent | d7ec1d234b260df869213e195055dd75bcbe5cf3 (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/battle_gfx_sfx_util.c')
-rw-r--r-- | src/battle_gfx_sfx_util.c | 8 |
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) |