diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-01 08:28:26 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-01 08:28:26 -0400 |
commit | 65d66e10ba727139bf7048bff241e99d140410b6 (patch) | |
tree | fcd995d336aab8bb7bea33f8cddeca10012a33be | |
parent | 6006a9df06cbe4228987a791aa522c01b1c49ddd (diff) |
Celadon Mart 5F
-rw-r--r-- | data/map_header_banks.asm | 2 | ||||
-rw-r--r-- | data/map_header_pointers.asm | 2 | ||||
-rwxr-xr-x | main.asm | 8 | ||||
-rwxr-xr-x | scripts/celadonmart5.asm | 3 |
4 files changed, 11 insertions, 4 deletions
diff --git a/data/map_header_banks.asm b/data/map_header_banks.asm index 87388feb..8e5dea1e 100644 --- a/data/map_header_banks.asm +++ b/data/map_header_banks.asm @@ -136,7 +136,7 @@ MapHeaderBanks:: ; fc3e4 (3f:43e4) db BANK(CeladonPokecenter_h) db BANK(CeladonGym_h) db BANK(CeladonGameCorner_h) - db $12 ; db BANK(CeladonMart5_h) + db BANK(CeladonMart5_h) db $12 ; db BANK(CeladonPrizeRoom_h) db $12 ; db BANK(CeladonDiner_h) db $12 ; db BANK(CeladonHouse_h) diff --git a/data/map_header_pointers.asm b/data/map_header_pointers.asm index 75f8b555..2f51f36e 100644 --- a/data/map_header_pointers.asm +++ b/data/map_header_pointers.asm @@ -136,7 +136,7 @@ MapHeaderPointers:: ; fc1f2 (3f:41f2) dw CeladonPokecenter_h dw CeladonGym_h dw CeladonGameCorner_h - dw $507f ; dw CeladonMart5_h + dw CeladonMart5_h dw $5107 ; dw CeladonPrizeRoom_h dw $5168 ; dw CeladonDiner_h dw $51e8 ; dw CeladonHouse_h @@ -949,7 +949,13 @@ INCLUDE "scripts/celadongamecorner.asm" INCLUDE "data/mapObjects/celadongamecorner.asm" CeladonGameCornerBlocks: INCBIN "maps/celadongamecorner.blk" - dr $4907f,$492a9 + +INCLUDE "data/mapHeaders/celadonmart5.asm" +INCLUDE "scripts/celadonmart5.asm" +INCLUDE "data/mapObjects/celadonmart5.asm" +CeladonMart5Blocks: +INCBIN "maps/celadonmart5.blk" + dr $49107,$492a9 INCLUDE "data/mapHeaders/mtmoonpokecenter.asm" INCLUDE "scripts/mtmoonpokecenter.asm" diff --git a/scripts/celadonmart5.asm b/scripts/celadonmart5.asm index 9bd7f991..bf63a7cc 100755 --- a/scripts/celadonmart5.asm +++ b/scripts/celadonmart5.asm @@ -1,5 +1,6 @@ CeladonMart5Script: ; 49069 (12:5069) - jp EnableAutoTextBoxDrawing + call EnableAutoTextBoxDrawing + ret CeladonMart5TextPointers: ; 4906c (12:506c) dw CeladonMart5Text1 |