diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
commit | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (patch) | |
tree | cb094078122b217fc67e2285614b79c6e83eaf88 /src/field_door.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/field_door.c')
-rw-r--r-- | src/field_door.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/field_door.c b/src/field_door.c index 59b72f3ab..e9f403d7c 100644 --- a/src/field_door.c +++ b/src/field_door.c @@ -473,9 +473,9 @@ bool8 FieldIsDoorAnimationRunning(void) u16 GetDoorSoundEffect(int x, int y) { if (GetDoorSoundType(sDoorGraphics, x, y) == DOOR_SOUND_NORMAL) - return MUS_W_DOOR; + return SE_DOOR; else // DOOR_SOUND_SLIDING - return SE_JIDO_DOA; + return SE_SLIDING_DOOR; } static s8 GetDoorSoundType(const struct DoorGraphics * gfx, int x, int y) |