diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-10-04 13:11:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-04 13:11:18 +0200 |
| commit | 1e6b67079526b3f17ed5cecf1beea986e7984f53 (patch) | |
| tree | 9399b38bf52381d58ad2bedcc7581be538e6f07b /Source/Core | |
| parent | d790660b598a4d9b5d9a2dadd1a375beb83a8788 (diff) | |
| parent | 4035d0781c6d06e5f2d52217eda0bc4fc17444fa (diff) | |
Merge pull request #6092 from t27duck/missing_wiiware_makers
Add some missing WiiWare makers
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DiscIO/Enums.cpp | 3 | ||||
| -rw-r--r-- | Source/Core/DolphinQt2/GameList/GameFileCache.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/GameListCtrl.cpp | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Enums.cpp b/Source/Core/DiscIO/Enums.cpp index 6add18d801..b011d5f351 100644 --- a/Source/Core/DiscIO/Enums.cpp +++ b/Source/Core/DiscIO/Enums.cpp @@ -580,6 +580,7 @@ std::string GetCompanyFromID(const std::string& company_id) {"JF", "Arc System Works"}, {"JJ", "Deep Silver"}, {"JW", "Atari"}, + {"JX", "Shin'en"}, {"K6", "Nihon System"}, {"KB", "NIS America"}, {"KM", "Deep Silver"}, @@ -608,6 +609,8 @@ std::string GetCompanyFromID(const std::string& company_id) {"SV", "SevenGames"}, {"SZ", "Storm City"}, {"TK", "Tasuke / Works"}, + {"TL", "Telltale Games"}, + {"TR", "Tetris Online"}, {"TV", "Tivola"}, {"UG", "Metro 3D / Data Design"}, {"VN", "Valcon Games"}, diff --git a/Source/Core/DolphinQt2/GameList/GameFileCache.cpp b/Source/Core/DolphinQt2/GameList/GameFileCache.cpp index 40e1928649..4a768b2b38 100644 --- a/Source/Core/DolphinQt2/GameList/GameFileCache.cpp +++ b/Source/Core/DolphinQt2/GameList/GameFileCache.cpp @@ -12,7 +12,7 @@ #include "Core/ConfigManager.h" #include "DolphinQt2/Settings.h" -static const int CACHE_VERSION = 1; // Last changed in PR #5927 +static const int CACHE_VERSION = 2; // Last changed in PR #6092 static const int DATASTREAM_VERSION = QDataStream::Qt_5_0; GameFileCache::GameFileCache() diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index ceb6894776..ac03914037 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -82,7 +82,7 @@ public: wxProgressDialog* dialog; }; -static constexpr u32 CACHE_REVISION = 3; // Last changed in PR 5573 +static constexpr u32 CACHE_REVISION = 4; // Last changed in PR 6092 static bool sorted = false; |
