mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Hide Farsi on non-Windows as it won't render
This commit is contained in:
parent
f8a26a417b
commit
9fac72c916
1 changed files with 4 additions and 0 deletions
|
@ -291,6 +291,10 @@ NewLanguageScreen::NewLanguageScreen(const std::string &title) : ListPopupScreen
|
|||
if (tempLangs[i].name.find("ar_AE") != std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
// Farsi also only works on Windows.
|
||||
if (tempLangs[i].name.find("fa_IR") != std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
FileInfo lang = tempLangs[i];
|
||||
langs_.push_back(lang);
|
||||
|
|
Loading…
Add table
Reference in a new issue