diff options
Diffstat (limited to 'engine/events/bug_contest/judging.asm')
-rw-r--r-- | engine/events/bug_contest/judging.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/events/bug_contest/judging.asm b/engine/events/bug_contest/judging.asm index 276104788..a166269d5 100644 --- a/engine/events/bug_contest/judging.asm +++ b/engine/events/bug_contest/judging.asm @@ -27,7 +27,7 @@ _BugContestJudging: BugContest_FirstPlaceText: text_far ContestJudging_FirstPlaceText - start_asm + text_asm ld de, SFX_1ST_PLACE call PlaySFX call WaitSFX @@ -37,12 +37,12 @@ BugContest_FirstPlaceText: BugContest_FirstPlaceScoreText: ; The winning score was @ points! text_far ContestJudging_FirstPlaceScoreText - db "@" + text_end BugContest_SecondPlaceText: ; Placing second was @ , who caught a @ !@ @ text_far ContestJudging_SecondPlaceText - start_asm + text_asm ld de, SFX_2ND_PLACE call PlaySFX call WaitSFX @@ -52,12 +52,12 @@ BugContest_SecondPlaceText: BugContest_SecondPlaceScoreText: ; The score was @ points! text_far ContestJudging_SecondPlaceScoreText - db "@" + text_end BugContest_ThirdPlaceText: ; Placing third was @ , who caught a @ !@ @ text_far ContestJudging_ThirdPlaceText - start_asm + text_asm ld de, SFX_3RD_PLACE call PlaySFX call WaitSFX @@ -67,7 +67,7 @@ BugContest_ThirdPlaceText: BugContest_ThirdPlaceScoreText: ; The score was @ points! text_far ContestJudging_ThirdPlaceScoreText - db "@" + text_end LoadContestantName: ; If a = 1, get your name. |