From 55202eac241be32ee10187de71ab7b65c29fdd99 Mon Sep 17 00:00:00 2001 From: Philipp AUER Date: Fri, 4 Jan 2019 18:17:55 +0100 Subject: rename coords to size in struct MonCoords --- src/battle_controller_recorded_player.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/battle_controller_recorded_player.c') diff --git a/src/battle_controller_recorded_player.c b/src/battle_controller_recorded_player.c index 301c1f009..9055fc16b 100644 --- a/src/battle_controller_recorded_player.c +++ b/src/battle_controller_recorded_player.c @@ -1217,18 +1217,18 @@ static void RecordedPlayerHandleDrawTrainerPic(void) if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER) { xPos = 90; - yPos = (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 80; } else { - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } } else { xPos = 80; - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER) -- cgit v1.2.3