diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-03-31 13:11:13 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-03-31 13:11:13 -0400 |
commit | 707970c982bbe758cc48ce6f772616eaf80b647a (patch) | |
tree | d32565f625794c89afc5c3b876444b070d88449c /src/contest.c | |
parent | f12861136737dbfeda72f50bc771c3613a651952 (diff) |
CONTEST_STRING enums
Diffstat (limited to 'src/contest.c')
-rw-r--r-- | src/contest.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/contest.c b/src/contest.c index 6f3deea3d..3eec7d0ac 100644 --- a/src/contest.c +++ b/src/contest.c @@ -4636,15 +4636,15 @@ void SetContestantEffectStringID2(u8 a, u8 b) void sub_80B141C(u8 a, u8 b) { if (b >= 60) - SetContestantEffectStringID(a, 53); + SetContestantEffectStringID(a, CONTEST_STRING_TRIPPED_OVER); else if (b >= 40) - SetContestantEffectStringID(a, 52); + SetContestantEffectStringID(a, CONTEST_STRING_LEAPT_UP); else if (b >= 30) - SetContestantEffectStringID(a, 51); + SetContestantEffectStringID(a, CONTEST_STRING_UTTER_CRY); else if (b >= 20) - SetContestantEffectStringID(a, 50); + SetContestantEffectStringID(a, CONTEST_STRING_TURNED_BACK); else if (b >= 10) - SetContestantEffectStringID(a, 49); + SetContestantEffectStringID(a, CONTEST_STRING_LOOKED_DOWN); } void sub_80B146C(u8 a, u8 b) |