Fixed graphics bug with Steven double battle (#4078)
Caused the wrong palette to be used during Steven's ball throw animation in the Mossdeep Space Center fight.
This commit is contained in:
parent
e995927d13
commit
3e50480cab
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ static void PlayerPartnerHandleIntroTrainerBallThrow(u32 battler)
|
|||
const u32 *trainerPal;
|
||||
|
||||
if (gPartnerTrainerId == TRAINER_STEVEN_PARTNER)
|
||||
trainerPal = gTrainerBackPicPaletteTable[TRAINER_STEVEN_PARTNER].data;
|
||||
trainerPal = gTrainerBackPicPaletteTable[TRAINER_BACK_PIC_STEVEN].data;
|
||||
else if (gPartnerTrainerId >= TRAINER_CUSTOM_PARTNER) // Custom multi battle.
|
||||
trainerPal = gTrainerBackPicPaletteTable[gPartnerSpriteId].data;
|
||||
else if (IsAiVsAiBattle())
|
||||
|
|
Loading…
Reference in a new issue