Ryujinx/src/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs
Mythrax 76bb4ae2d0
nacp: add support for zlib-compressed title blocks
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.
2026-02-21 15:39:50 +10:00

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