diff options
author | Astatin <[email protected]> | 2025-05-06 12:25:55 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-05-06 12:25:55 +0200 |
commit | 245c6e40f7199e4239763bae41722a03e00abfab (patch) | |
tree | e052cbec518e050c0dd28788c064d5c3090082bc /entity/actions.gbasm | |
parent | 9261f0860f997d7fcaba1d508114d9e0f0253e91 (diff) |
Mouse double movement (but broken with collision stuff)
Diffstat (limited to 'entity/actions.gbasm')
-rw-r--r-- | entity/actions.gbasm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/entity/actions.gbasm b/entity/actions.gbasm index 083aed3..9186a4b 100644 --- a/entity/actions.gbasm +++ b/entity/actions.gbasm @@ -2,6 +2,8 @@ Entities_Actions: LD A, $mem_moving_animation_step CP $09 JR Z, =.Reset_Entities_Collision_Map + CP $05 + JR Z, =.Reset_Entities_Collision_Map LD A, $mem_map_loading_flags BIT 5, A @@ -91,6 +93,10 @@ Turn_Jump_table: JP =Fimsh_Turn NOP + ; 07 + JP =Mouse_Turn + NOP + Interaction_Jump_table: ; 00 RET |