Merge pull request #38 from PokemonSanFran/followers-owTowerFix
Fixed expanded OW IDs in battle_tower
This commit is contained in:
commit
e0f66c80b8
2 changed files with 5 additions and 5 deletions
|
@ -34,9 +34,9 @@ struct FacilityMon
|
|||
};
|
||||
|
||||
extern const u8 gTowerMaleFacilityClasses[30];
|
||||
extern const u8 gTowerMaleTrainerGfxIds[30];
|
||||
extern const u16 gTowerMaleTrainerGfxIds[30];
|
||||
extern const u8 gTowerFemaleFacilityClasses[20];
|
||||
extern const u8 gTowerFemaleTrainerGfxIds[20];
|
||||
extern const u16 gTowerFemaleTrainerGfxIds[20];
|
||||
extern const u16 gBattleFrontierHeldItems[];
|
||||
extern const struct FacilityMon gBattleFrontierMons[];
|
||||
extern const struct BattleFrontierTrainer gBattleFrontierTrainers[];
|
||||
|
|
|
@ -208,7 +208,7 @@ const u8 gTowerFemaleFacilityClasses[20] =
|
|||
FACILITY_CLASS_LASS
|
||||
};
|
||||
|
||||
const u8 gTowerMaleTrainerGfxIds[30] =
|
||||
const u16 gTowerMaleTrainerGfxIds[30] =
|
||||
{
|
||||
OBJ_EVENT_GFX_HIKER,
|
||||
OBJ_EVENT_GFX_TUBER_M,
|
||||
|
@ -242,7 +242,7 @@ const u8 gTowerMaleTrainerGfxIds[30] =
|
|||
OBJ_EVENT_GFX_HIKER
|
||||
};
|
||||
|
||||
const u8 gTowerFemaleTrainerGfxIds[20] =
|
||||
const u16 gTowerFemaleTrainerGfxIds[20] =
|
||||
{
|
||||
OBJ_EVENT_GFX_WOMAN_2,
|
||||
OBJ_EVENT_GFX_TUBER_F,
|
||||
|
@ -3469,7 +3469,7 @@ static void FillTentTrainerParty_(u16 trainerId, u8 firstMonId, u8 monCount)
|
|||
|
||||
u16 FacilityClassToGraphicsId(u8 facilityClass)
|
||||
{
|
||||
u8 trainerObjectGfxId;
|
||||
u16 trainerObjectGfxId;
|
||||
u8 i;
|
||||
|
||||
// Search male classes.
|
||||
|
|
Loading…
Reference in a new issue