mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-23 16:19:44 +00:00
Enable Arabic on Windows where we are using system fonts that can handle it.
This commit is contained in:
parent
d69d33b0da
commit
1c422d41ce
@ -204,10 +204,13 @@ NewLanguageScreen::NewLanguageScreen(const std::string &title) : ListPopupScreen
|
||||
if (tempLangs[i].name.find("README") != std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
// Skip ar_AE
|
||||
|
||||
#ifndef _WIN32
|
||||
// ar_AE only works on Windows.
|
||||
if (tempLangs[i].name.find("ar_AE") != std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
FileInfo lang = tempLangs[i];
|
||||
langs_.push_back(lang);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user