mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Fix typo "ggText_DexSortSmallestDescription". (#433)
Should be "gText_DexSortSmallestDescription".
This commit is contained in:
parent
f3a25f83cf
commit
6babb97182
@ -1034,7 +1034,7 @@ extern const u8 gText_DexSortAtoZDescription[];
|
||||
extern const u8 gText_DexSortHeaviestDescription[];
|
||||
extern const u8 gText_DexSortLightestDescription[];
|
||||
extern const u8 gText_DexSortTallestDescription[];
|
||||
extern const u8 ggText_DexSortSmallestDescription[];
|
||||
extern const u8 gText_DexSortSmallestDescription[];
|
||||
extern const u8 gText_DexEmptyString[];
|
||||
extern const u8 gText_DexSearchDontSpecify[];
|
||||
extern const u8 gText_DexSearchTypeNone[];
|
||||
|
@ -1083,7 +1083,7 @@ static const struct PokedexOption gDexSortOptions[] =
|
||||
{gText_DexSortHeaviestDescription, gText_DexSortHeaviestTitle},
|
||||
{gText_DexSortLightestDescription, gText_DexSortLightestTitle},
|
||||
{gText_DexSortTallestDescription, gText_DexSortTallestTitle},
|
||||
{ggText_DexSortSmallestDescription, gText_DexSortSmallestTitle},
|
||||
{gText_DexSortSmallestDescription, gText_DexSortSmallestTitle},
|
||||
{NULL, NULL},
|
||||
};
|
||||
|
||||
|
@ -155,7 +155,7 @@ const u8 gText_DexSortAtoZDescription[] = _("Spotted and owned POKéMON are list
|
||||
const u8 gText_DexSortHeaviestDescription[] = _("Owned POKéMON are listed from the\nheaviest to the lightest.");
|
||||
const u8 gText_DexSortLightestDescription[] = _("Owned POKéMON are listed from the\nlightest to the heaviest.");
|
||||
const u8 gText_DexSortTallestDescription[] = _("Owned POKéMON are listed from the\ntallest to the smallest.");
|
||||
const u8 ggText_DexSortSmallestDescription[] = _("Owned POKéMON are listed from the\nsmallest to the tallest.");
|
||||
const u8 gText_DexSortSmallestDescription[] = _("Owned POKéMON are listed from the\nsmallest to the tallest.");
|
||||
const u8 gText_DexEmptyString[] = _("");
|
||||
const u8 gText_DexSearchDontSpecify[] = _("DON'T SPECIFY.");
|
||||
const u8 gText_DexSearchTypeNone[] = _("NONE");
|
||||
|
Loading…
Reference in New Issue
Block a user