mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-25 07:28:17 -05:00
add define for monster files count
This commit is contained in:
parent
4b944408f0
commit
23390eed10
|
|
@ -1,11 +1,13 @@
|
|||
#include "global.h"
|
||||
#include "file_system.h"
|
||||
|
||||
extern const File gMonsterFiles[];
|
||||
#define MONSTER_FILES_COUNT 497
|
||||
|
||||
extern const File gMonsterFiles[MONSTER_FILES_COUNT];
|
||||
|
||||
const FileArchive gMonsterFileArchive = {
|
||||
.magic = "pksdir0",
|
||||
.count = 497,
|
||||
.count = MONSTER_FILES_COUNT,
|
||||
.entries = gMonsterFiles,
|
||||
};
|
||||
|
||||
|
|
@ -510,7 +512,7 @@ extern const u8 gKaoMunchlax[];
|
|||
extern const u8 gKaoRayquazaCutscene[];
|
||||
extern const u8 gPaletFile[];
|
||||
|
||||
const File gMonsterFiles[] = {
|
||||
const File gMonsterFiles[MONSTER_FILES_COUNT] = {
|
||||
[0] = { "ax001", gAxBulbasaur,},
|
||||
[1] = { "ax002", gAxIvysaur,},
|
||||
[2] = { "ax003", gAxVenusaur,},
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user