summaryrefslogtreecommitdiff
path: root/src/contest_util.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-08-20 18:02:00 -0400
committerGriffinR <griffin.g.richards@gmail.com>2020-08-20 19:06:14 -0400
commit30142411799650c17367ce4652269e8ecca7ceef (patch)
tree69a4b6b971c0df861bf549c64029317e1146ab99 /src/contest_util.c
parent6c34effda93c67a37895e79b684b31b3cb9a2a88 (diff)
Give songs meaningful english names
Diffstat (limited to 'src/contest_util.c')
-rw-r--r--src/contest_util.c6
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);
}
}
}