diff options
author | Philipp AUER <philipp@karathan.at> | 2019-01-04 18:17:55 +0100 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-01-04 19:59:55 -0600 |
commit | 55202eac241be32ee10187de71ab7b65c29fdd99 (patch) | |
tree | 60c4b966f04c53647fcffc92f53fa1d51f2aed30 /src/battle_controller_wally.c | |
parent | cba2f81bf870734960492b2d586d5a0684d99cf5 (diff) |
rename coords to size in struct MonCoords
Diffstat (limited to 'src/battle_controller_wally.c')
-rw-r--r-- | src/battle_controller_wally.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle_controller_wally.c b/src/battle_controller_wally.c index ac3604054..9a9773316 100644 --- a/src/battle_controller_wally.c +++ b/src/battle_controller_wally.c @@ -1036,7 +1036,7 @@ static void WallyHandleDrawTrainerPic(void) SetMultiuseSpriteTemplateToTrainerBack(TRAINER_BACK_PIC_WALLY, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, - 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].coords), + 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].size), 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 240; @@ -1051,7 +1051,7 @@ static void WallyHandleTrainerSlide(void) SetMultiuseSpriteTemplateToTrainerBack(TRAINER_BACK_PIC_WALLY, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, - 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].coords), + 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].size), 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -96; |