Split common text into a separate object.

This commit is contained in:
IIMarckus
2015-12-18 00:59:03 -07:00
parent 67d38da5b0
commit 82e2fe78e1
8 changed files with 3314 additions and 4113 deletions

View File

@@ -23,6 +23,7 @@ data/egg_moves_crystal.o \
data/evos_attacks_crystal.o \
data/pokedex/entries_crystal.o \
misc/crystal_misc.o \
text/common_text.o \
gfx/pics.o
crystal_obj := \
@@ -38,6 +39,7 @@ data/egg_moves_crystal.o \
data/evos_attacks_crystal.o \
data/pokedex/entries_crystal.o \
misc/crystal_misc.o \
text/common_text.o \
gfx/pics.o
all_obj := $(crystal_obj) crystal11.o wram11.o

View File

@@ -24381,22 +24381,6 @@ INCLUDE "text/phone/elm.asm"
INCLUDE "text/phone/trainers1.asm"
SECTION "Common Text 2", ROMX, BANK[$6F]
INCLUDE "text/common_2.asm"
SECTION "Common Text 3", ROMX, BANK[$70]
INCLUDE "text/common_3.asm"
SECTION "Common Text 4", ROMX, BANK[$71]
INCLUDE "text/common_4.asm"
SECTION "bank72", ROMX, BANK[$72]
ItemNames::

1865
text/common_1.asm Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

817
text/common_5.asm Normal file

File diff suppressed because it is too large Load Diff

12
text/common_text.asm Normal file
View File

@@ -0,0 +1,12 @@
INCLUDE "includes.asm"
SECTION "Text 1", ROMX, BANK[$6F]
INCLUDE "text/common_1.asm"
SECTION "Text 2", ROMX, BANK[$70]
INCLUDE "text/common_2.asm"
INCLUDE "text/common_3.asm"
SECTION "Text 3", ROMX, BANK[$71]
INCLUDE "text/common_4.asm"
INCLUDE "text/common_5.asm"