diff options
author | Astatin <[email protected]> | 2025-02-06 17:46:09 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-06 17:46:09 +0900 |
commit | ca26030e800318d48aec501e6f470eea8d4299c0 (patch) | |
tree | 6689870d29be11acd2b003059c01a199de68e88c /tiles.gbasm | |
parent | 3b67c86b61b5d8640860dd5e8b016790ee4814c3 (diff) |
Add energy points to the gui
Diffstat (limited to 'tiles.gbasm')
-rw-r--r-- | tiles.gbasm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tiles.gbasm b/tiles.gbasm index c9489ea..449f9b9 100644 --- a/tiles.gbasm +++ b/tiles.gbasm @@ -6,7 +6,7 @@ Load_Tile: LD HL, $8800 LD DE, =Font_Data - LD BC, $2b0 + LD BC, $3a0 CALL =memcpy LD HL, $9100 @@ -16,7 +16,7 @@ Load_Tile: LD HL, $9200 LD DE, =BG_Tile_Image_Data - LD BC, $04a0 + LD BC, $04b0 CALL =memcpy LD HL, $8600 @@ -83,3 +83,9 @@ Dialogue_Box_Tilemap_data: .DB 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 .DB 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 .DB 0x12, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +Cost_Window_Tilemap_data: + .DB 0x11, 0x17, 0x17, 0x17, 0x17, 0x17, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + .DB 0x15, 0xab, 0xac, 0xad, 0xae, 0xaf, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + .DB 0x15, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + .DB 0x12, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |