Formatting and comments

This commit is contained in:
Rangi 2018-12-09 18:13:37 -05:00
parent 4b4c53c7ae
commit e51339f01a
2 changed files with 6 additions and 4 deletions

View File

@ -1822,6 +1822,7 @@ UpdateJumpPosition:
.y .y
db -4, -6, -8, -10, -11, -12, -12, -12 db -4, -6, -8, -10, -11, -12, -12, -12
db -11, -10, -9, -8, -6, -4, 0, 0 db -11, -10, -9, -8, -6, -4, 0, 0
Function5000: ; unscripted? Function5000: ; unscripted?
; copy [wPlayerNextMovement] to [wPlayerMovement] ; copy [wPlayerNextMovement] to [wPlayerMovement]
ld a, [wPlayerNextMovement] ld a, [wPlayerNextMovement]

View File

@ -469,6 +469,7 @@ DoPlayerMovement::
ret ret
.Steps: .Steps:
; entries correspond to STEP_* constants
dw .SlowStep dw .SlowStep
dw .NormalStep dw .NormalStep
dw .FastStep dw .FastStep
@ -514,10 +515,10 @@ DoPlayerMovement::
turn_step LEFT turn_step LEFT
turn_step RIGHT turn_step RIGHT
.FinishFacing: .FinishFacing:
db $80 + DOWN db $80 | DOWN
db $80 + UP db $80 | UP
db $80 + LEFT db $80 | LEFT
db $80 + RIGHT db $80 | RIGHT
.StandInPlace: .StandInPlace:
ld a, 0 ld a, 0