diff --git a/agbcc b/agbcc new file mode 160000 index 0000000..d59cfb5 --- /dev/null +++ b/agbcc @@ -0,0 +1 @@ +Subproject commit d59cfb5ac1ce13d4bc9875ffef1666b118338d33 diff --git a/data/text/save.inc b/data/text/save.inc index a359d46..eb1c686 100644 --- a/data/text/save.inc +++ b/data/text/save.inc @@ -1,4 +1,7 @@ .align 2 +gText_ConfirmSave:: + .string "Would you like to save the game?$" + gText_AlreadySavedFile:: .string "u sus$" diff --git a/include/save.h b/include/save.h index e48a66f..48c9896 100644 --- a/include/save.h +++ b/include/save.h @@ -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) diff --git a/include/strings.h b/include/strings.h index 158fb99..fcdbdae 100644 --- a/include/strings.h +++ b/include/strings.h @@ -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[]; diff --git a/src/start_menu.c b/src/start_menu.c index e631f4f..f878819 100644 --- a/src/start_menu.c +++ b/src/start_menu.c @@ -961,7 +961,7 @@ static u8 SaveConfirmSaveCallback(void) } else { - ShowSaveMessage(SaveYesNoCallback); + ShowSaveMessage(gText_ConfirmSave, SaveYesNoCallback); } return SAVE_IN_PROGRESS;