diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-28 16:14:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 16:14:21 -0400 |
commit | 09cfed64b5a10a51ca246ce7a4f57b95cf4b4456 (patch) | |
tree | d90353c1a06b199c585fdc258c049583392dc09f /src/contest_util.c | |
parent | eb4bcc89cd149ae1a5e43f2aef0dddf5a69bb23c (diff) | |
parent | ee72696b5340b5578941aeb5d03bca6099e26538 (diff) |
Merge pull request #1146 from GriffinRichards/rename-songs
Give songs meaningful english names
Diffstat (limited to 'src/contest_util.c')
-rw-r--r-- | src/contest_util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contest_util.c b/src/contest_util.c index 00254248f..c60e885f2 100644 --- a/src/contest_util.c +++ b/src/contest_util.c @@ -533,7 +533,7 @@ static void CB2_StartShowContestResults(void) if (gLinkContestFlags & LINK_CONTEST_FLAG_IS_WIRELESS) gPaletteFade.bufferTransferDisabled = TRUE; else - PlayBGM(MUS_CON_K); + PlayBGM(MUS_CONTEST_RESULTS); SetVBlankCallback(VBlankCB_ShowContestResults); } @@ -619,7 +619,7 @@ static void Task_ShowContestResults(u8 taskId) case 3: if (IsLinkTaskFinished() == TRUE) { - PlayBGM(MUS_CON_K); + PlayBGM(MUS_CONTEST_RESULTS); gPaletteFade.bufferTransferDisabled = FALSE; gTasks[taskId].tState++; break; @@ -1796,7 +1796,7 @@ static void Task_DrawFinalStandingNumber(u8 taskId) WriteSequenceToBgTilemapBuffer(2, firstTileNum + 0x10, 1, gTasks[taskId].tMonIndex * 3 + 6, 2, 1, 17, 1); sContestResults->data->numStandingsPrinted++; DestroyTask(taskId); - PlaySE(SE_JYUNI); + PlaySE(SE_CONTEST_PLACE); } } } |