summaryrefslogtreecommitdiff
path: root/arm9/src/scrcmd_sound.c
diff options
context:
space:
mode:
authorRémi Calixte <remicalixte.rmc@gmail.com>2021-06-19 14:43:22 +0200
committerRémi Calixte <remicalixte.rmc@gmail.com>2021-06-19 14:43:22 +0200
commita252c28863e078fd8ea65f4ad228308585de92c5 (patch)
treeaeabbc12f8b097c2f91386f43ced25ef8e6c61b5 /arm9/src/scrcmd_sound.c
parentb8290ba524554302d67c3f23e2cf002447e6d4c8 (diff)
rename symbols based on pokeemerald
Diffstat (limited to 'arm9/src/scrcmd_sound.c')
-rw-r--r--arm9/src/scrcmd_sound.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arm9/src/scrcmd_sound.c b/arm9/src/scrcmd_sound.c
index ec5ab7f8..1251c612 100644
--- a/arm9/src/scrcmd_sound.c
+++ b/arm9/src/scrcmd_sound.c
@@ -18,7 +18,7 @@ extern void FUN_0200538C(u32, u16, u32);
extern void FUN_020053CC(u16, u16);
extern BOOL FUN_02005404(void);
extern u16 FUN_02005410(u16);
-extern void FUN_020054C8(u16);
+extern void PlaySE(u16);
extern void FUN_020054F0(u16, u32);
extern void FUN_020047C8(u8, u8);
extern void FUN_020040F4(u8);
@@ -123,7 +123,7 @@ THUMB_FUNC BOOL ScrCmd_Unk0058(struct ScriptContext* ctx)
THUMB_FUNC BOOL ScrCmd_PlayFanfare(struct ScriptContext* ctx)
{
u16 unk = VarGet(ctx->unk80, ScriptReadHalfword(ctx));
- FUN_020054C8(unk);
+ PlaySE(unk);
return FALSE;
}
@@ -263,4 +263,3 @@ THUMB_FUNC BOOL ScrCmd_SetVolume(struct ScriptContext* ctx)
return FALSE;
}
-