mirror of https://github.com/PCSX2/pcsx2.git
Revert "pcsx2:gui:wx3: wrong order of language in wizard"
This reverts commit 8afd2edd1d
and removes
the leading space from "System Default".
This commit is contained in:
parent
29463b9e52
commit
ac99735b5b
|
@ -59,14 +59,7 @@ LangPackEnumeration::LangPackEnumeration( wxLanguage langId )
|
||||||
LangPackEnumeration::LangPackEnumeration()
|
LangPackEnumeration::LangPackEnumeration()
|
||||||
{
|
{
|
||||||
wxLangId = wxLANGUAGE_DEFAULT;
|
wxLangId = wxLANGUAGE_DEFAULT;
|
||||||
#if wxMAJOR_VERSION < 3
|
englishName = L"System Default";
|
||||||
englishName = L"_System Default"; // left-side space forces it to sort to the front of the lists
|
|
||||||
#else
|
|
||||||
// It seems wx change its sort algo... It seems non alphanumeric character are removed
|
|
||||||
englishName = L"0) System Default"; // left-side 0) forces it to sort to the front of the lists
|
|
||||||
// This one can work too
|
|
||||||
//englishName = L"A default";
|
|
||||||
#endif
|
|
||||||
englishName += _(" (default)");
|
englishName += _(" (default)");
|
||||||
canonicalName = L"default";
|
canonicalName = L"default";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue