Fix GetDesiredLanguage and expose a way to set the desired language, default to english

This commit is contained in:
gdkchan 2018-04-29 20:18:46 -03:00
parent f73a182b20
commit 071754aaeb
5 changed files with 83 additions and 63 deletions

View file

@ -0,0 +1,23 @@
namespace Ryujinx.Core.OsHle
{
public enum SystemLanguage
{
Japanese,
AmericanEnglish,
French,
German,
Italian,
Spanish,
Chinese,
Korean,
Dutch,
Portuguese,
Russian,
Taiwanese,
BritishEnglish,
CanadianFrench,
LatinAmericanSpanish,
SimplifiedChinese,
TraditionalChinese
}
}