diff options
author | Astatin <[email protected]> | 2025-02-17 16:27:28 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-17 16:27:28 +0900 |
commit | 7dea55ee87dd028daba7c85b82ee55e6b08bf533 (patch) | |
tree | c90b1208201a983cefd1f16778a9f287e5bbbeb0 /main.gbasm | |
parent | c1ac8f71285f25c2b3baad3f65f91942867076c7 (diff) |
update health display on death + change direction with B+arrows
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -162,7 +162,7 @@ VBLANK_Entrypoint: CALL =Loading_Mode_VBlank LD A, $mem_current_mode - CP $enum_dungeon_mode + BIT 7, A JR NZ, =Skip_VBlank_Dungeon_Update LD HL, $9d60 LD A, $mem_bunny_health @@ -196,8 +196,8 @@ VBLANK_Entrypoint: CP $enum_dungeon_mode JR NZ, =Skip_Dungeon_Update - CALL =Object_Interactions_Check CALL =Entities_Actions + CALL =Object_Interactions_Check CALL =Respawn_Entities CALL =Prepare_Scrolling_Map |