Revert "Speed up saving some more."

This reverts commit f1bf8fcfdc.
This commit is contained in:
2022-10-11 01:19:10 +00:00
parent 2fd2705498
commit 4e3c9597fc
5 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#define GUARD_SAVE_H
// 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, therefore we changed the params in tbld to allow for more data.
// Only 12 bytes of the footer are used.
#define SECTOR_DATA_SIZE 4084
#define SECTOR_FOOTER_SIZE 12
#define SECTOR_SIZE (SECTOR_DATA_SIZE + SECTOR_FOOTER_SIZE)

View File

@ -276,6 +276,7 @@ extern const u8 gText_MenuOptionOption[];
extern const u8 gText_MenuOptionExit[];
// save menu texts
extern const u8 gText_ConfirmSave[];
extern const u8 gText_DifferentSaveFile[];
extern const u8 gText_AlreadySavedFile[];
extern const u8 gText_SavingDontTurnOff[];