diff --git a/include/constants/global.h b/include/constants/global.h index 9163ee638..b4f432741 100644 --- a/include/constants/global.h +++ b/include/constants/global.h @@ -52,13 +52,13 @@ #define POKEBLOCKS_COUNT 40 #define OBJECT_EVENTS_COUNT 16 #define MAIL_COUNT (10 + PARTY_SIZE) -#define SECRET_BASES_COUNT 20 +#define SECRET_BASES_COUNT 2 #define POKE_NEWS_COUNT 16 #define PC_ITEMS_COUNT 2 #define BAG_ITEMS_COUNT 110 #define BAG_KEYITEMS_COUNT 30 #define BAG_POKEBALLS_COUNT 16 -#define BAG_TMHM_COUNT 64 +#define BAG_TMHM_COUNT 108 #define BAG_BERRIES_COUNT 46 #define OBJECT_EVENT_TEMPLATES_COUNT 64 #define DECOR_MAX_SECRET_BASE 16 diff --git a/include/save.h b/include/save.h index 41913d1df..58f2ef5ff 100644 --- a/include/save.h +++ b/include/save.h @@ -3,8 +3,8 @@ // Each 4 KiB flash sector contains 3968 bytes of actual data followed by a 128 byte footer. // Only 12 bytes of the footer are used. -#define SECTOR_DATA_SIZE 3968 -#define SECTOR_FOOTER_SIZE 128 +#define SECTOR_DATA_SIZE 4084 +#define SECTOR_FOOTER_SIZE 12 #define SECTOR_SIZE (SECTOR_DATA_SIZE + SECTOR_FOOTER_SIZE) #define NUM_SAVE_SLOTS 2