diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-27 07:54:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 07:54:29 -0400 |
commit | 85dbd6c93e819015aaa3eb7bdf3854b06d6e2d62 (patch) | |
tree | 6e758f116a192f4c8faf0a66c88fcd03ee7d95fd /include/fieldmap.h | |
parent | 6f05711b27ab9a1072e83c74791c6ef18177cac4 (diff) | |
parent | e055d3afa44e9a9f8dba5332e256194a2db91b9f (diff) |
Merge pull request #342 from GriffinRichards/sync-mapdatasize
Add MAX_MAP_DATA_SIZE alias
Diffstat (limited to 'include/fieldmap.h')
-rw-r--r-- | include/fieldmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/fieldmap.h b/include/fieldmap.h index c12dea340..4ac3a4712 100644 --- a/include/fieldmap.h +++ b/include/fieldmap.h @@ -9,7 +9,8 @@ #define NUM_METATILES_TOTAL 1024 #define NUM_PALS_IN_PRIMARY 7 #define NUM_PALS_TOTAL 13 -#define VIRTUAL_MAP_SIZE 0x2800 +#define MAX_MAP_DATA_SIZE 0x2800 +#define VIRTUAL_MAP_SIZE (MAX_MAP_DATA_SIZE) extern struct BackupMapLayout VMap; extern const struct MapLayout Route1_Layout; |