Introduced with TLoZ BotW 1.9.0, a compression flag determines whether the first 0x3000 bytes of the NACP title block contain a zlib-compressed blob that decompresses to 0x6000 bytes with up to 32 language entries. Added Polish and Thai language support (indexes 16/17), NacpHelper decompression utility, and updated all title-reading call sites to use resolved entries.
27 lines
490 B
C#
27 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,
|
|
}
|
|
}
|