diff options
author | Astatin <[email protected]> | 2025-04-08 13:13:21 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-04-08 13:13:21 +0200 |
commit | 85c478d0c2368c0a38fa3e6aa4d4e9070ea63fc3 (patch) | |
tree | bebf24df46c6520f27f70c2fc932bc132d252e63 /map/loading.gbasm | |
parent | fb8e853fd0c6660696e762f67877b4d24a9f4c22 (diff) |
Add loading screen with the floor count on dungeon generation
Diffstat (limited to 'map/loading.gbasm')
-rw-r--r-- | map/loading.gbasm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/map/loading.gbasm b/map/loading.gbasm index 505bc53..878d0e1 100644 --- a/map/loading.gbasm +++ b/map/loading.gbasm @@ -1,4 +1,4 @@ -Load_Map: +Load_Prepared_Map: LD A, $mem_viewport_x SUB $02 LD C, A @@ -13,6 +13,10 @@ Load_Map: .For_X: LD A, C CALL =Load_Block + LD A, $mem_prepared_block_position_1 + SUB $98 + ADD $c4 + LD $mem_prepared_block_position_1, A CALL =Display_Main_Prepared_Block INC C |