diff options
author | Astatin <[email protected]> | 2025-02-18 19:03:42 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-18 19:03:42 +0900 |
commit | 18d7d064daf704193f8dff6b2ef3ae68b7fc3aac (patch) | |
tree | 9af417ec9a09294edec8ca0e5ffbd146a0081b4b /main.gbasm | |
parent | f4197f6117b7cc16873fca749c0dcb838577a7e5 (diff) |
Did a bunch of things I honestly don't remember everything but now basic attack is broken
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -98,9 +98,10 @@ Entrypoint: New_Dungeon: LD SP, $fffe LD HL, $mem_loaded_enemies_indices - LD A, $00 + LD A, $02 LD (HL+), A LD (HL+), A + LD A, $00 LD (HL+), A LD A, $03 LD (HL+), A @@ -283,7 +284,7 @@ STAT_Entrypoint: .INCLUDE "entity/init.gbasm" .INCLUDE "entity/bunny.gbasm" .INCLUDE "entity/fox.gbasm" -.INCLUDE "entity/frog.gbasm" +.INCLUDE "entity/cat.gbasm" .INCLUDE "entity/penguin.gbasm" .INCLUDE "entity/actions.gbasm" .INCLUDE "entity/collisions.gbasm" |