summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-06-03 20:38:19 +0200
committerJosJuice <josjuice@gmail.com>2017-06-03 20:46:30 +0200
commit4493b1324bf305b4530a6748bd69e2f9b3275619 (patch)
tree8bd222420ba6703c059497c6a230e9ddb69502c1 /Source/Core
parent0ff8e2b36f95653cf524cbf23ba6c2f69b201e0d (diff)
TitleDatabase: Allow showing Japanese names for Japanese GC games
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/TitleDatabase.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/Source/Core/Core/TitleDatabase.cpp b/Source/Core/Core/TitleDatabase.cpp
index 701be82e3a..c138d3698b 100644
--- a/Source/Core/Core/TitleDatabase.cpp
+++ b/Source/Core/Core/TitleDatabase.cpp
@@ -89,6 +89,16 @@ static bool IsWiiTitle(const std::string& game_id)
return !IsGCTitle(game_id);
}
+static bool IsJapaneseGCTitle(const std::string& game_id)
+{
+ return IsGCTitle(game_id) && DiscIO::RegionSwitchGC(game_id[3]) == DiscIO::Region::NTSC_J;
+}
+
+static bool IsNonJapaneseGCTitle(const std::string& game_id)
+{
+ return IsGCTitle(game_id) && DiscIO::RegionSwitchGC(game_id[3]) != DiscIO::Region::NTSC_J;
+}
+
static bool LoadMap(const std::string& file_path, Map& gc_map, Map& wii_map)
{
Map map;
@@ -118,10 +128,16 @@ TitleDatabase::TitleDatabase()
LoadMap(File::GetSysDirectory() + "wiitdb-en.txt", m_gc_title_map, m_wii_title_map);
// Load the database in the console language.
+ // Note: The GameCube language setting can't be set to Japanese,
+ // so instead, we use Japanese names iff the games are NTSC-J.
const std::string gc_code = GetLanguageCode(SConfig::GetInstance().GetCurrentLanguage(false));
const std::string wii_code = GetLanguageCode(SConfig::GetInstance().GetCurrentLanguage(true));
+ LoadMap(File::GetSysDirectory() + "wiitdb-ja.txt", m_gc_title_map, IsJapaneseGCTitle);
if (gc_code != "en")
- LoadMap(File::GetSysDirectory() + "wiitdb-" + gc_code + ".txt", m_gc_title_map, IsGCTitle);
+ {
+ LoadMap(File::GetSysDirectory() + "wiitdb-" + gc_code + ".txt", m_gc_title_map,
+ IsNonJapaneseGCTitle);
+ }
if (wii_code != "en")
LoadMap(File::GetSysDirectory() + "wiitdb-" + wii_code + ".txt", m_wii_title_map, IsWiiTitle);