diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-11-20 23:12:51 -0500 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-11-20 23:12:51 -0500 |
commit | 82cb741d8b2b2d88c1e23d2d5ccf5443892538fa (patch) | |
tree | c05b6424006d1d46a3d38c0205c1dfce986c6fdc /src/script_pokemon_util_80F87D8.c | |
parent | ec3e86f1d2f78bb9fece0956e246862cea3c07b9 (diff) |
Standardize EVENT_OBJECT to OBJECT_EVENT
Diffstat (limited to 'src/script_pokemon_util_80F87D8.c')
-rwxr-xr-x | src/script_pokemon_util_80F87D8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script_pokemon_util_80F87D8.c b/src/script_pokemon_util_80F87D8.c index a79c37d8c..f1f5bdb6f 100755 --- a/src/script_pokemon_util_80F87D8.c +++ b/src/script_pokemon_util_80F87D8.c @@ -247,9 +247,9 @@ void SetLinkContestPlayerGfx(void) if (version == VERSION_RUBY || version == VERSION_SAPPHIRE) { if (gLinkPlayers[i].gender == MALE) - gContestMons[i].trainerGfxId = EVENT_OBJ_GFX_LINK_RS_BRENDAN; + gContestMons[i].trainerGfxId = OBJ_EVENT_GFX_LINK_RS_BRENDAN; else - gContestMons[i].trainerGfxId = EVENT_OBJ_GFX_LINK_RS_MAY; + gContestMons[i].trainerGfxId = OBJ_EVENT_GFX_LINK_RS_MAY; } } |