[Core] Add add kPolish & kRussian to XLanguage

This commit is contained in:
emoose 2020-01-11 18:27:24 +00:00
parent b96929d125
commit ec06bd16ad
1 changed files with 14 additions and 9 deletions

View File

@ -357,15 +357,20 @@ static_assert_size(X_EXCEPTION_RECORD, 0x50);
// Found by dumping the kSectionStringTable sections of various games:
enum class XLanguage : uint32_t {
kUnknown = 0,
kEnglish = 1,
kJapanese = 2,
kGerman = 3,
kFrench = 4,
kSpanish = 5,
kItalian = 6,
kKorean = 7,
kChinese = 8,
kInvalid,
kEnglish,
kJapanese,
kGerman,
kFrench,
kSpanish,
kItalian,
kKorean,
kTChinese,
kUnknown9, // unused?
kUnknown10, // unused?
kPolish,
kRussian,
kMaxLanguages // STFS headers can't support any more languages than these?
};
} // namespace xe