diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 20:00:14 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 20:00:14 +0100 |
commit | aa9a0a900ddeaa79a05f1b93458a8b19ae170d69 (patch) | |
tree | edad8064a35aec29c6b874101eba41d21305cda0 /engine/map_objects.asm | |
parent | b4e087167f3263342bbe01b5256f42fcf2d726af (diff) |
No more mobile EQUS ret (replace with Stubbed_ + ret)
Diffstat (limited to 'engine/map_objects.asm')
-rw-r--r-- | engine/map_objects.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engine/map_objects.asm b/engine/map_objects.asm index b0cc073a6..8e1c9b829 100644 --- a/engine/map_objects.asm +++ b/engine/map_objects.asm @@ -1570,7 +1570,7 @@ StepType05: ; 4e0c ld [hl], a call IncrementObjectStructField1c StepType04: ; 4e21 - call MobileFn_4fb2 + call Stubbed_Function4fb2 ld hl, OBJECT_DIRECTION_WALKING add hl, bc ld [hl], STANDING @@ -1578,7 +1578,7 @@ StepType04: ; 4e21 ; 4e2b NPCStep: ; 4e2b - call MobileFn_4fb2 + call Stubbed_Function4fb2 call AddStepVector ld hl, OBJECT_STEP_DURATION add hl, bc @@ -1841,7 +1841,8 @@ SkyfallTop: ; 4f83 ret ; 4fb2 -MobileFn_4fb2: mobile +Stubbed_Function4fb2: + ret ld hl, OBJECT_1D add hl, bc inc [hl] |