diff --git a/Source/Core/DiscIO/Enums.cpp b/Source/Core/DiscIO/Enums.cpp index b011d5f351..eb18494234 100644 --- a/Source/Core/DiscIO/Enums.cpp +++ b/Source/Core/DiscIO/Enums.cpp @@ -350,6 +350,7 @@ std::string GetCompanyFromID(const std::string& company_id) {"5Q", "LEGO Media"}, {"5S", "Xicat Interactive"}, {"5T", "Cryo Interactive"}, + {"5V", "Agetec"}, {"5W", "Red Storm Entertainment"}, {"5X", "Microids"}, {"5Z", "Data Design / Conspiracy / Swing"}, @@ -566,18 +567,22 @@ std::string GetCompanyFromID(const std::string& company_id) {"GM", "Gamecock Media Group"}, {"GN", "Oxygen Games"}, {"GT", "505 Games"}, + {"GX", "Commodore"}, {"GY", "The Game Factory"}, {"H1", "Treasure"}, {"H2", "Aruze"}, {"H3", "Ertain"}, {"H4", "SNK Playmore"}, {"HF", "Level-5"}, + {"HH", "Focus Home Interactive"}, {"HJ", "Genius Products"}, {"HY", "Reef Entertainment"}, {"HZ", "Nordcurrent"}, {"IH", "Yojigen"}, + {"J8", "SNK Playmore"}, {"J9", "AQ Interactive"}, {"JF", "Arc System Works"}, + {"JH", "City Interactive"}, {"JJ", "Deep Silver"}, {"JW", "Atari"}, {"JX", "Shin'en"}, diff --git a/Source/Core/DolphinQt2/GameList/GameFileCache.cpp b/Source/Core/DolphinQt2/GameList/GameFileCache.cpp index 4a768b2b38..aaeae799c7 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 = 2; // Last changed in PR #6092 +static const int CACHE_VERSION = 3; // Last changed in PR #6102 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 ac03914037..dc7984c862 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 = 4; // Last changed in PR 6092 +static constexpr u32 CACHE_REVISION = 5; // Last changed in PR 6102 static bool sorted = false;