diff options
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -21,9 +21,6 @@ New_Dungeon: HALT JP =Wait_for_VRAM.loop -Text_Astatin: - .DB 0x8a, 0x9c, 0x9d, 0x8a, 0x9d, 0x92, 0x97, 0xff - VBLANK_Entrypoint: ; Window enable LD A, $reg_lcd_controller @@ -44,7 +41,7 @@ VBLANK_Entrypoint: INC HL - LD BC, =Text_Astatin + LD BC, =Astatin_Text CALL =Print_str CALL =Display_Prepared_Block @@ -93,3 +90,4 @@ STAT_Entrypoint: .INCLUDE "entity/collisions.gbasm" .INCLUDE "entity/display.gbasm" .INCLUDE "tileset.gbasm" +.INCLUDE "dialogues.gbasm" |