diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-14 13:46:14 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-14 13:46:14 -0400 |
commit | 1fa6aecbfcc81b8794ca10e6d88837b1645f95e1 (patch) | |
tree | 52fc07965084952c820b0e5eea1d858da217f273 /event | |
parent | 3108c9fa6a265a7ecbac6fa2aaa458025f5aeead (diff) |
Unify directional movement macros
Diffstat (limited to 'event')
-rwxr-xr-x | event/forced_movement.asm | 16 | ||||
-rwxr-xr-x | event/overworld.asm | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/event/forced_movement.asm b/event/forced_movement.asm index aa0473803..136698501 100755 --- a/event/forced_movement.asm +++ b/event/forced_movement.asm @@ -29,32 +29,32 @@ Script_ForcedMovement:: ; 0x1253d .MovementData_up: ; 0x12564 step_dig 16 - turn_in_down + turn_in DOWN step_dig 16 - turn_head_down + turn_head DOWN step_end ; 0x1256b .MovementData_down: ; 0x1256b step_dig 16 - turn_in_up + turn_in UP step_dig 16 - turn_head_up + turn_head UP step_end ; 0x12572 .MovementData_right: ; 0x12572 step_dig 16 - turn_in_left + turn_in LEFT step_dig 16 - turn_head_left + turn_head LEFT step_end ; 0x12579 .MovementData_left: ; 0x12579 step_dig 16 - turn_in_right + turn_in RIGHT step_dig 16 - turn_head_right + turn_head RIGHT step_end ; 0x12580 diff --git a/event/overworld.asm b/event/overworld.asm index 77903e107..3906c7d6e 100755 --- a/event/overworld.asm +++ b/event/overworld.asm @@ -751,7 +751,7 @@ Script_UsedWaterfall: ; 0xcb20 ret .WaterfallStep: ; cb4f - turn_waterfall_up + turn_waterfall UP step_end .Text_UsedWaterfall: ; 0xcb51 |