You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Prefix engine_flags wram addresses with w
This commit is contained in:
@@ -18,7 +18,7 @@ DoPlayerMovement:: ; 80000
|
||||
|
||||
; Standing downhill instead moves down.
|
||||
|
||||
ld hl, BikeFlags
|
||||
ld hl, wBikeFlags
|
||||
bit 2, [hl] ; downhill
|
||||
ret z
|
||||
|
||||
@@ -285,7 +285,7 @@ DoPlayerMovement:: ; 80000
|
||||
call .BikeCheck
|
||||
jr nz, .walk
|
||||
|
||||
ld hl, BikeFlags
|
||||
ld hl, wBikeFlags
|
||||
bit 2, [hl] ; downhill
|
||||
jr z, .fast
|
||||
|
||||
@@ -672,7 +672,7 @@ DoPlayerMovement:: ; 80000
|
||||
|
||||
.CheckStrengthBoulder: ; 8036f
|
||||
|
||||
ld hl, BikeFlags
|
||||
ld hl, wBikeFlags
|
||||
bit 0, [hl] ; using strength
|
||||
jr z, .not_boulder
|
||||
|
||||
|
||||
Reference in New Issue
Block a user