diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-26 17:37:14 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-26 17:37:14 -0400 |
commit | 9130579f1454c869e74ea8c953c0c778a4760396 (patch) | |
tree | 95935cb5754f89ea78402cf4706830f71eb07e81 /include/event_object_movement.h | |
parent | b0878acc98761b6ce488289906cd44b334134f95 (diff) |
Resolve off-by-one error in evobjmv.c
Diffstat (limited to 'include/event_object_movement.h')
-rw-r--r-- | include/event_object_movement.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/event_object_movement.h b/include/event_object_movement.h index 34247c3a5..792118c00 100644 --- a/include/event_object_movement.h +++ b/include/event_object_movement.h @@ -119,8 +119,8 @@ bool8 ObjectEventSetHeldMovement(struct ObjectEvent *, u8); void ShiftStillObjectEventCoords(struct ObjectEvent *); void OverrideMovementTypeForObjectEvent(const struct ObjectEvent *, u8); void SetTrainerMovementType(struct ObjectEvent *, u8); -u8 GetFishingNoCatchDirectionAnimNum(u8 direction); -u8 GetFishingBiteDirectionAnimNum(u8 a0); +u8 GetFishingDirectionAnimNum(u8 direction); +u8 GetFishingNoCatchDirectionAnimNum(u8 a0); void ObjectEventSetGraphicsId(struct ObjectEvent *objectEvent, u8 a1); u8 sub_805EB44(u8, u8, s16, s16); void InitObjectEventPalettes(u8 mode); @@ -220,6 +220,6 @@ u8 GetAcroWheelieInPlaceDirectionMovementAction(u32 direction); u8 GetAcroPopWheelieMoveDirectionMovementAction(u32 direction); u8 GetAcroWheelieMoveDirectionMovementAction(u32 direction); u8 sub_80641EC(u32 direction); -u8 sub_8063510(u8 direction); +u8 GetFishingBiteDirectionAnimNum(u8 direction); #endif // GUARD_EVENT_OBJECT_MOVEMENT_H |