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/help_system.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) | |
parent | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (diff) |
Merge pull request #356 from GriffinRichards/rename-songs
Give songs meaningful english names
Diffstat (limited to 'src/help_system.c')
-rw-r--r-- | src/help_system.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/help_system.c b/src/help_system.c index d43a0eb32..946da55be 100644 --- a/src/help_system.c +++ b/src/help_system.c @@ -54,12 +54,12 @@ u8 RunHelpSystemCallback(void) { if (!sub_812B45C() || !gHelpSystemEnabled) { - PlaySE(SE_HELP_NG); + PlaySE(SE_HELP_ERROR); return 0; } m4aMPlayStop(&gMPlayInfo_SE1); m4aMPlayStop(&gMPlayInfo_SE2); - PlaySE(SE_HELP_OP); + PlaySE(SE_HELP_OPEN); if (!gUnknown_203F174) m4aMPlayVolumeControl(&gMPlayInfo_BGM, 0xFFFF, 0x80); SaveCallbacks(); @@ -107,7 +107,7 @@ u8 RunHelpSystemCallback(void) case 5: if (!RunHelpMenuSubroutine(&gHelpSystemListMenu, gHelpSystemListMenuItems)) { - PlaySE(SE_HELP_CL); + PlaySE(SE_HELP_CLOSE); sVideoState.state = 6; } break; |