diff --git a/include/strings.h b/include/strings.h index 049a2efd5c..26dfd514b8 100644 --- a/include/strings.h +++ b/include/strings.h @@ -534,6 +534,7 @@ extern const u8 gText_NoMatchingPkmnWereFound[]; extern const u8 gText_SelectorArrow[]; //PokedexPlus HGSS_Ui extern const u8 gText_Stats_Buttons[]; +extern const u8 gText_Stats_Buttons_Decapped[]; extern const u8 gText_Stats_HP[]; extern const u8 gText_Stats_Attack[]; extern const u8 gText_Stats_Defense[]; diff --git a/src/pokedex.c b/src/pokedex.c index 91cb01dc0c..1e8b4c1218 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -6261,7 +6261,10 @@ static void StatsPage_PrintAToggleUpdownMoves(void) { u8 x = 9; u8 y = 0; - AddTextPrinterParameterized3(WIN_NAVIGATION_BUTTONS, 0, x, y, sStatsPageNavigationTextColor, 0, gText_Stats_Buttons); + if (!HGSS_DECAPPED) + AddTextPrinterParameterized3(WIN_NAVIGATION_BUTTONS, 0, x, y, sStatsPageNavigationTextColor, 0, gText_Stats_Buttons); + else + AddTextPrinterParameterized3(WIN_NAVIGATION_BUTTONS, 0, x, y, sStatsPageNavigationTextColor, 0, gText_Stats_Buttons_Decapped); // DrawKeypadIcon(WIN_NAVIGATION_BUTTONS, 10, 5, 0); //(u8 windowId, u8 keypadIconId, u16 x, u16 y) PutWindowTilemap(WIN_NAVIGATION_BUTTONS); CopyWindowToVram(WIN_NAVIGATION_BUTTONS, 3); diff --git a/src/strings.c b/src/strings.c index eeb067c306..e2b7e07852 100644 --- a/src/strings.c +++ b/src/strings.c @@ -1821,6 +1821,7 @@ const u8 gText_Berries[] = _("BERRIES"); //HGSS_Ui PokedexPlus const u8 gText_Stats_Buttons[] = _("{A_BUTTON}TOGGLE {DPAD_UPDOWN}MOVES"); +const u8 gText_Stats_Buttons_Decapped[] = _("{A_BUTTON}Toggle {DPAD_UPDOWN}Moves"); const u8 gText_Stats_HP[] = _("HP"); const u8 gText_Stats_Attack[] = _("ATK"); const u8 gText_Stats_Defense[] = _("DEF");