diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-06-14 08:08:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 08:08:51 -0500 |
commit | bebcea402921d23232f7657fcfdab810f8699399 (patch) | |
tree | a59ea431d486bf23cde76e35ca789d1a0d113f3e /include/trainer_see.h | |
parent | f810c9ecade3d793a139f67cd8f63effc5644b99 (diff) | |
parent | e01dd90bb36f850fe88f2b1edae65c74b3bc48b1 (diff) |
Merge pull request #263 from huderlem/event_object_movement
Sync event object movement with pokeruby
Diffstat (limited to 'include/trainer_see.h')
-rw-r--r-- | include/trainer_see.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/trainer_see.h b/include/trainer_see.h index 847380782..43f8b82d2 100644 --- a/include/trainer_see.h +++ b/include/trainer_see.h @@ -3,7 +3,7 @@ struct ApproachingTrainer { - u8 mapObjectId; + u8 eventObjectId; u8 radius; // plus 1 const u8 *trainerScriptPtr; u8 taskId; @@ -17,14 +17,14 @@ extern u8 gUnknown_030060AC; extern u8 gApproachingTrainerId; bool8 CheckForTrainersWantingBattle(void); -void sub_80B4578(struct MapObject *var); +void sub_80B4578(struct EventObject *var); void EndTrainerApproach(void); void sub_80B45D0(void); -u8 FldEff_ExclamationMarkIcon1(void); -u8 FldEff_ExclamationMarkIcon2(void); +u8 FldEff_ExclamationMarkIcon(void); +u8 FldEff_QuestionMarkIcon(void); u8 FldEff_HeartIcon(void); -u8 GetCurrentApproachingTrainerMapObjectId(void); -u8 GetChosenApproachingTrainerMapObjectId(u8 arrayId); +u8 GetCurrentApproachingTrainerEventObjectId(void); +u8 GetChosenApproachingTrainerEventObjectId(u8 arrayId); void sub_80B4808(void); #endif // GUARD_TRAINER_SEE_H |