ryubing-ryujinx/src/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs
LotP1 f9489c229c Make a Property for application titles
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.
2026-02-24 18:08:32 +01:00

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,
}
}