diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-11-21 01:15:34 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-02-12 18:35:27 -0600 |
commit | 98ca62cf91e7e0bd33f09edfc848a62061015aee (patch) | |
tree | 6902d9b2183b6f0a379bf141ed3f88b1e2a36598 /src/contest.c | |
parent | 6356dc03c1736df6ba25f2bc999e211d8e30a9f0 (diff) |
Standardize Event Object to Object Event
Diffstat (limited to 'src/contest.c')
-rw-r--r-- | src/contest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contest.c b/src/contest.c index 9fb17a86b..40afb9741 100644 --- a/src/contest.c +++ b/src/contest.c @@ -2123,9 +2123,9 @@ void Contest_CreatePlayerMon(u8 partyIndex) } memcpy(gContestMons[gContestPlayerMonIndex].trainerName, name, 8); if (gSaveBlock2.playerGender == MALE) - gContestMons[gContestPlayerMonIndex].trainerGfxId = EVENT_OBJ_GFX_LINK_BRENDAN; + gContestMons[gContestPlayerMonIndex].trainerGfxId = OBJ_EVENT_GFX_LINK_BRENDAN; else - gContestMons[gContestPlayerMonIndex].trainerGfxId = EVENT_OBJ_GFX_LINK_MAY; + gContestMons[gContestPlayerMonIndex].trainerGfxId = OBJ_EVENT_GFX_LINK_MAY; gContestMons[gContestPlayerMonIndex].flags = 0; gContestMons[gContestPlayerMonIndex].unk2C[0] = 0; gContestMons[gContestPlayerMonIndex].species = GetMonData(&gPlayerParty[partyIndex], MON_DATA_SPECIES); |