diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-03-03 13:41:35 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-03-03 13:41:35 -0500 |
| commit | e5b8c1598cbfbcf58ef656bddeb2c9b832852b1e (patch) | |
| tree | 03aa8875f3327a9e03b767c4d209706ff4981aa5 /Sideways-stairs-with-diagonal-movement.md | |
| parent | af0c2275f1f11056684fa66940f714a22ee784de (diff) | |
More collision data
Diffstat (limited to 'Sideways-stairs-with-diagonal-movement.md')
| -rw-r--r-- | Sideways-stairs-with-diagonal-movement.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Sideways-stairs-with-diagonal-movement.md b/Sideways-stairs-with-diagonal-movement.md index b16fd87..bb0c93d 100644 --- a/Sideways-stairs-with-diagonal-movement.md +++ b/Sideways-stairs-with-diagonal-movement.md @@ -21,7 +21,6 @@ Edit [constants/collision_constants.asm](../blob/master/constants/collision_cons ; TileCollisionTable indexes (see data/collision_permissions.asm) COLL_FLOOR EQU $00 ... - COLL_DOWN_WALL EQU $b3 ; unused +COLL_DIAGONAL_STAIRS_RIGHT EQU $d0 +COLL_DIAGONAL_STAIRS_LEFT EQU $d1 COLL_FF EQU $ff ; garbage @@ -29,7 +28,6 @@ Edit [constants/collision_constants.asm](../blob/master/constants/collision_cons ; collision data type nybbles LO_NYBBLE_GRASS EQU $07 ... - HI_NYBBLE_UNUSED_C0 EQU $c0 +HI_NYBBLE_DIAGONAL_STAIRS EQU $d0 ``` |
