diff options
author | Astatin <[email protected]> | 2024-09-03 18:03:34 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-09-03 18:03:34 +0900 |
commit | 8a69fd747d22206afe4ea31a743e58070699b3d9 (patch) | |
tree | 2769d790ad5e4652ef347b669ca0d1acbf8d4700 /map | |
parent | 4dd5da8812f90e8af924e3a6ee89aef4a88658e4 (diff) |
Rewrite Display_Bunny to be able to display multiple entities
Diffstat (limited to 'map')
-rw-r--r-- | map/loading.gbasm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/map/loading.gbasm b/map/loading.gbasm index a7783c8..e42f388 100644 --- a/map/loading.gbasm +++ b/map/loading.gbasm @@ -103,13 +103,15 @@ Display_Scrolling_Map: BIT 0, A JR Z, =Display_Scrolling_Map.End - LD A, $mem_moving_sprite_direction + LD A, $mem_bunny_direction + AND $07 DEC A AND $01 SLA A DEC A LD B, A - LD A, $mem_moving_sprite_direction + LD A, $mem_bunny_direction + AND $07 DEC A BIT 1, A |