diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-31 13:42:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 13:42:41 -0400 |
commit | 4cf09577950db22d7f0acf6ede45b8dca1c97156 (patch) | |
tree | cb094078122b217fc67e2285614b79c6e83eaf88 /src/field_control_avatar.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) | |
parent | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (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.c | 6 |
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; } } |