summaryrefslogtreecommitdiff
path: root/src/field_control_avatar.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-08-31 13:42:41 -0400
committerGitHub <noreply@github.com>2020-08-31 13:42:41 -0400
commit4cf09577950db22d7f0acf6ede45b8dca1c97156 (patch)
treecb094078122b217fc67e2285614b79c6e83eaf88 /src/field_control_avatar.c
parentc5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff)
parentbb56d4a3f4cab33f899646e0630282fc6176a9c9 (diff)
Merge pull request #356 from GriffinRichards/rename-songs
Give songs meaningful english names
Diffstat (limited to 'src/field_control_avatar.c')
-rw-r--r--src/field_control_avatar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/field_control_avatar.c b/src/field_control_avatar.c
index 694ef0392..572c6af6b 100644
--- a/src/field_control_avatar.c
+++ b/src/field_control_avatar.c
@@ -1067,7 +1067,7 @@ void HandleBoulderFallThroughHole(struct ObjectEvent * object)
{
if (MapGridGetMetatileBehaviorAt(object->currentCoords.x, object->currentCoords.y) == MB_FALL_WARP)
{
- PlaySE(SE_RU_HYUU);
+ PlaySE(SE_FALL);
RemoveObjectEventByLocalIdAndMap(object->localId, gSaveBlock1Ptr->location.mapNum, gSaveBlock1Ptr->location.mapGroup);
FlagClear(GetObjectEventFlagByLocalIdAndMap(object->localId, gSaveBlock1Ptr->location.mapNum, gSaveBlock1Ptr->location.mapGroup));
}
@@ -1123,7 +1123,7 @@ bool8 dive_warp(struct MapPosition *position, u16 metatileBehavior)
{
StoreInitialPlayerAvatarState();
DoDiveWarp();
- PlaySE(SE_W291);
+ PlaySE(SE_M_DIVE);
return TRUE;
}
}
@@ -1133,7 +1133,7 @@ bool8 dive_warp(struct MapPosition *position, u16 metatileBehavior)
{
StoreInitialPlayerAvatarState();
DoDiveWarp();
- PlaySE(SE_W291);
+ PlaySE(SE_M_DIVE);
return TRUE;
}
}