diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-12-19 22:16:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-19 22:16:59 -0600 |
commit | 6ef96717181dfa1cda548cbe405410aba065e41c (patch) | |
tree | 82ed2fe52d25d624d49bc2ee7499a7de006bd70f /src/field_control_avatar.c | |
parent | c74bfbe11017e4f937dc6466a93a6d3dc72cdac7 (diff) | |
parent | 5eac3ce1a2503a2d358033b7e0242c1ecd2b63e3 (diff) |
Merge pull request #440 from garakmon/fldeff
Decompile / port fldeff_80F9BCC
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 829d72c34..3774ef2b3 100644 --- a/src/field_control_avatar.c +++ b/src/field_control_avatar.c @@ -12,7 +12,7 @@ #include "field_poison.h" #include "field_screen_effect.h" #include "field_specials.h" -#include "fldeff_80F9BCC.h" +#include "fldeff_misc.h" #include "item_menu.h" #include "link.h" #include "metatile_behavior.h" @@ -521,13 +521,13 @@ static bool8 TryStartMiscWalkingScripts(u16 metatileBehavior) } else if (MetatileBehavior_IsSecretBaseGlitterMat(metatileBehavior) == TRUE) { - sub_80FA9D0(); + DoSecretBaseGlitterMatSparkle(); return FALSE; } else if (MetatileBehavior_IsSecretBaseSoundMat(metatileBehavior) == TRUE) { PlayerGetDestCoords(&x, &y); - sub_80FA970(MapGridGetMetatileIdAt(x, y)); + PlaySecretBaseMusicNoteMatSound(MapGridGetMetatileIdAt(x, y)); return FALSE; } return FALSE; |