[Core] Add add kPolish & kRussian to XLanguage

This commit is contained in:
emoose 2020-01-11 18:27:24 +00:00 committed by illusion98
parent 150baf986c
commit f5d01f79a1
1 changed files with 14 additions and 9 deletions

View File

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