mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-11 17:55:44 +00:00
Title has been renamed to TitleBlock. We now use a Property called Title to get the ApplicationTitle array, which is automatically filled with titles based on the title compression status.
26 lines
490 B
C#
26 lines
490 B
C#
namespace Ryujinx.HLE.HOS.SystemState
|
|
{
|
|
public enum SystemLanguage
|
|
{
|
|
Japanese,
|
|
AmericanEnglish,
|
|
French,
|
|
German,
|
|
Italian,
|
|
Spanish,
|
|
Chinese,
|
|
Korean,
|
|
Dutch,
|
|
Portuguese,
|
|
Russian,
|
|
Taiwanese,
|
|
BritishEnglish,
|
|
CanadianFrench,
|
|
LatinAmericanSpanish,
|
|
SimplifiedChinese,
|
|
TraditionalChinese,
|
|
BrazilianPortuguese,
|
|
Polish,
|
|
Thai,
|
|
}
|
|
}
|