diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 23:23:57 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 23:23:57 -0400 |
commit | ba5bc304f959d2387b45b9320808797272cf958a (patch) | |
tree | 76028ce9aed1bcaaa5f700b4785df10c0f504c66 /constants/wram_constants.asm | |
parent | 7883e8f431a0b8f995c8f581af248b53896e5aa5 (diff) |
Updates to more closely sync with pokegold
Diffstat (limited to 'constants/wram_constants.asm')
-rw-r--r-- | constants/wram_constants.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index b4156e171..2b3d61e36 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -84,11 +84,12 @@ LEFT_MASK EQU 1 << LEFT RIGHT_MASK EQU 1 << RIGHT ; wFacingDirection:: + const_def NUM_DIRECTIONS - 1, -1 + shift_const FACE_DOWN ; 8 + shift_const FACE_UP ; 4 + shift_const FACE_LEFT ; 2 + shift_const FACE_RIGHT ; 1 FACE_CURRENT EQU 0 -FACE_DOWN EQU 8 -FACE_UP EQU 4 -FACE_LEFT EQU 2 -FACE_RIGHT EQU 1 ; wPokemonWithdrawDepositParameter:: PC_WITHDRAW EQU 0 |