mirror of https://github.com/mgba-emu/mgba.git
Qt: Skip processing QLocale::C if present
This commit is contained in:
parent
20da804e65
commit
eecdfd0c77
|
@ -352,7 +352,7 @@ SettingsView::SettingsView(ConfigController* controller, InputController* inputC
|
|||
continue;
|
||||
}
|
||||
QLocale locale(name.remove(QString("%0-").arg(binaryName)).remove(".qm"));
|
||||
if (locale.language() == QLocale::English) {
|
||||
if (locale.language() == QLocale::English || locale.language() == QLocale::C) {
|
||||
continue;
|
||||
}
|
||||
QString endonym = locale.nativeLanguageName();
|
||||
|
|
Loading…
Reference in New Issue