Use English game title when available.

This commit is contained in:
gibbed
2020-12-06 20:08:00 -06:00
committed by Rick Gibbed
parent 9ccdbb2153
commit 4ce43369a7
3 changed files with 12 additions and 1 deletions

View File

@@ -102,6 +102,10 @@ std::string XdbfGameData::title() const {
return GetStringTableEntry(default_language(), kXdbfIdTitle);
}
std::string XdbfGameData::title(XdbfLocale locale) const {
return GetStringTableEntry(locale, kXdbfIdTitle);
}
} // namespace util
} // namespace kernel
} // namespace xe

View File

@@ -137,6 +137,8 @@ class XdbfGameData : public XdbfWrapper {
// The game's title in its default language.
std::string title() const;
std::string title(XdbfLocale locale) const;
};
} // namespace util