Move data/audio/ back into audio/

Keep trainer data together
This commit is contained in:
Remy Oukaour 2017-12-15 12:38:59 -05:00
parent 94722aa8f0
commit 253c09949b
7 changed files with 7 additions and 5 deletions

View File

@ -2882,9 +2882,9 @@ LoadMusicByte:: ; e8d76
; e8d80
INCLUDE "data/audio/notes.asm"
INCLUDE "audio/notes.asm"
INCLUDE "data/audio/wave_samples.asm"
INCLUDE "audio/wave_samples.asm"
INCLUDE "audio/drumkits.asm"

View File

@ -1,5 +1,5 @@
; pitch
; FrequencyTable indexes (see data/audio/notes.asm)
; FrequencyTable indexes (see audio/notes.asm)
const_def
const __ ; 0
const C_ ; 1

View File

@ -7,6 +7,7 @@ ENDM
; `trainerclass` indexes are for:
; - TrainerClassAttributes (see data/trainers/trainer_attributes.asm)
; - TrainerClassDVs (see data/trainers/trainer_dvs.asm)
; - TrainerClassNames (see data/trainers/trainer_class_names.asm)
; - TrainerEncounterMusic (see data/trainers/encounter_music.asm)
; - TrainerGroups (see data/trainers/party_pointers.asm)
; - BTTrainerClassGenders (see data/trainers/gendered_trainers.asm)

View File

@ -1,3 +1,5 @@
TrainerClassNames:: ; 2c1ef
; entries correspond to trainer classes (see constants/trainer_constants.asm)
db "LEADER@"
db "LEADER@"
db "LEADER@"

View File

@ -1172,8 +1172,7 @@ SECTION "bankB", ROMX
INCLUDE "battle/trainer_huds.asm"
TrainerClassNames:: ; 2c1ef
INCLUDE "text/trainer_class_names.asm"
INCLUDE "data/trainers/trainer_class_names.asm"
INCLUDE "battle/ai/redundant.asm"