diff options
| author | JosJuice <josjuice@gmail.com> | 2019-02-23 19:36:05 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2019-02-25 19:55:49 +0100 |
| commit | 71e6243c54c7a66f8216533fecfbf0fa69cabaca (patch) | |
| tree | b8cd8fb1fae4b78b72594f54b845ee632b0a47af /Source/Core | |
| parent | 9df763b4acd8857fdcd3a919d4bd9ce6f4447e53 (diff) | |
TitleDatabase: Don't hardcode HBC IDs that actually are in GameTDB
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/TitleDatabase.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/Core/TitleDatabase.cpp b/Source/Core/Core/TitleDatabase.cpp index 2d3f610220..e21239e0d0 100644 --- a/Source/Core/Core/TitleDatabase.cpp +++ b/Source/Core/Core/TitleDatabase.cpp @@ -74,13 +74,12 @@ TitleDatabase::TitleDatabase() AddLazyMap(DiscIO::Language::TraditionalChinese, "zh_TW"); AddLazyMap(DiscIO::Language::Korean, "ko"); - // Titles that cannot be part of the Wii TDB, - // but common enough to justify having entries for them. + // Titles that aren't part of the Wii TDB, but common enough to justify having entries for them. // i18n: "Wii Menu" (or System Menu) refers to the Wii's main menu, // which is (usually) the first thing users see when a Wii console starts. m_base_map.emplace("0000000100000002", GetStringT("Wii Menu")); - for (const auto& id : {"HAXX", "JODI", "00010001af1bf516", "LULZ", "OHBC"}) + for (const auto& id : {"HAXX", "00010001af1bf516"}) m_base_map.emplace(id, "The Homebrew Channel"); } |
