diff options
author | Astatin <[email protected]> | 2024-10-15 17:03:35 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-10-15 17:03:35 +0900 |
commit | f5183a78e20deaa9a294250873f3b5ee5cedafa3 (patch) | |
tree | f426034fa307b2dabdca6980ec65a016653decc2 /entity/actions.gbasm | |
parent | b4beaa96c563d3af9e41c0801f9fbba9d1acdccd (diff) |
Increase size of entities array
Diffstat (limited to 'entity/actions.gbasm')
-rw-r--r-- | entity/actions.gbasm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/entity/actions.gbasm b/entity/actions.gbasm index c001609..9f46123 100644 --- a/entity/actions.gbasm +++ b/entity/actions.gbasm @@ -37,7 +37,7 @@ Entity_Action: PUSH HL LD A, L - AND $f8 + AND $f0 LD L, A ; This is confusing but this thing is actually CALL DE @@ -51,8 +51,8 @@ Entity_Action: Entity_Action.skip: LD A, L - AND $f8 - ADD $08 + AND $f0 + ADD $10 LD L, A RET @@ -259,7 +259,7 @@ Fox_AI: Fox_AI.End_movement.end: LD A, L - AND $f8 + AND $f0 LD L, A INC HL LD A, B |