diff options
author | Astatin <[email protected]> | 2024-09-17 18:14:17 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-09-17 18:14:17 +0900 |
commit | fa37dcacf1ff0de66f5c4eed7b89be6006d6d77b (patch) | |
tree | e47ab067c67fa760434dd4d63fbd4bd9e8a7d060 /map | |
parent | 9e420f33a1d42db70df96c3c14d932216df637c0 (diff) |
Add entities collisions
Diffstat (limited to 'map')
-rw-r--r-- | map/generation.gbasm | 2 | ||||
-rw-r--r-- | map/loading.gbasm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/map/generation.gbasm b/map/generation.gbasm index a08b539..dba1678 100644 --- a/map/generation.gbasm +++ b/map/generation.gbasm @@ -22,7 +22,7 @@ Carve_Map: ; X in C, Y in B LD L, A LD C, B - LD B, $c8 + LD B, $mem_dungeon_map_high LD A, (BC) OR (HL) diff --git a/map/loading.gbasm b/map/loading.gbasm index be4c8a4..7c4a0e9 100644 --- a/map/loading.gbasm +++ b/map/loading.gbasm @@ -316,7 +316,7 @@ Is_Solid: ; X in A, Y in B, Result A LD L, A LD C, B - LD B, $c8 + LD B, $mem_dungeon_map_high LD A, (BC) AND (HL) |