Freed up saveblock space

This commit is contained in:
Ninjdai 2023-11-13 21:56:51 +01:00
parent c143496cb5
commit 9ceef0af2d
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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