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:
Jonathan Li 2015-06-18 20:55:02 +01:00
parent 29463b9e52
commit ac99735b5b
1 changed files with 1 additions and 8 deletions

View File

@ -59,14 +59,7 @@ LangPackEnumeration::LangPackEnumeration( wxLanguage langId )
LangPackEnumeration::LangPackEnumeration()
{
wxLangId = wxLANGUAGE_DEFAULT;
#if wxMAJOR_VERSION < 3
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 = L"System Default";
englishName += _(" (default)");
canonicalName = L"default";