2024-02-02 11:43:31 +00:00
|
|
|
#ifndef GUARD_CONFIG_SAVE_H
|
|
|
|
#define GUARD_CONFIG_SAVE_H
|
|
|
|
|
2024-02-02 15:38:33 +00:00
|
|
|
// SaveBlock1 configs
|
2024-02-19 17:42:56 +00:00
|
|
|
#define FREE_EXTRA_SEEN_FLAGS_SAVEBLOCK1 FALSE // Free up unused Pokédex seen flags (52 bytes).
|
2024-02-02 15:52:39 +00:00
|
|
|
#define FREE_TRAINER_HILL FALSE // Frees up Trainer Hill data (28 bytes).
|
2024-02-02 15:38:33 +00:00
|
|
|
#define FREE_MYSTERY_EVENT_BUFFERS FALSE // Frees up ramScript (1104 bytes).
|
2024-05-19 09:13:14 +01:00
|
|
|
#define FREE_MATCH_CALL FALSE // Frees up match call and rematch / VS Seeker data. (104 bytes).
|
2024-02-02 13:57:40 +00:00
|
|
|
#define FREE_UNION_ROOM_CHAT FALSE // Frees up union room chat (212 bytes).
|
2024-02-02 14:01:50 +00:00
|
|
|
#define FREE_ENIGMA_BERRY FALSE // Frees up E-Reader Enigma Berry data (52 bytes).
|
2024-02-02 14:16:18 +00:00
|
|
|
#define FREE_LINK_BATTLE_RECORDS FALSE // Frees up link battle record data (88 bytes).
|
2024-02-02 15:45:58 +00:00
|
|
|
#define FREE_MYSTERY_GIFT FALSE // Frees up Mystery Gift data (876 bytes).
|
2024-02-02 15:38:33 +00:00
|
|
|
// SaveBlock1 total: 2516 bytes
|
|
|
|
// SaveBlock2 configs
|
2024-02-02 15:31:19 +00:00
|
|
|
#define FREE_BATTLE_TOWER_E_READER FALSE // Frees up Battle Tower E-Reader data (188 bytes).
|
2024-02-02 12:39:21 +00:00
|
|
|
#define FREE_POKEMON_JUMP FALSE // Frees up Pokémon Jump data (16 bytes).
|
2024-02-02 12:46:19 +00:00
|
|
|
#define FREE_RECORD_MIXING_HALL_RECORDS FALSE // Frees up hall records for record mixing (1032 bytes).
|
2024-02-19 17:42:56 +00:00
|
|
|
#define FREE_EXTRA_SEEN_FLAGS_SAVEBLOCK2 FALSE // Free up unused Pokédex seen flags (108 bytes).
|
|
|
|
// SaveBlock2 total: 1274 bytes
|
2024-02-02 12:13:27 +00:00
|
|
|
|
2024-02-19 17:42:56 +00:00
|
|
|
// Grand Total: 3790
|
2024-02-02 12:47:53 +00:00
|
|
|
|
2024-02-02 15:31:19 +00:00
|
|
|
#endif // GUARD_CONFIG_SAVE_H
|