summaryrefslogtreecommitdiff
path: root/Source/Core/UICommon/GameFileCache.cpp
diff options
context:
space:
mode:
authorZopolis4 <creatorsmithmdt@gmail.com>2021-07-21 02:18:44 +1000
committerZopolis4 <creatorsmithmdt@gmail.com>2025-04-21 22:05:24 +1000
commit494e2c05c217c6ba80ceecba7c3d7ce339ea55a9 (patch)
tree7735e7d84a15cec844729f7e382fb751a7ed9752 /Source/Core/UICommon/GameFileCache.cpp
parentbc3c3eb79ae4d8dc83091d20c686aac2d772590e (diff)
Adding support for detecting .bin images
Diffstat (limited to 'Source/Core/UICommon/GameFileCache.cpp')
-rw-r--r--Source/Core/UICommon/GameFileCache.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/UICommon/GameFileCache.cpp b/Source/Core/UICommon/GameFileCache.cpp
index 90dd0c63fc..f72f47c11e 100644
--- a/Source/Core/UICommon/GameFileCache.cpp
+++ b/Source/Core/UICommon/GameFileCache.cpp
@@ -26,14 +26,14 @@
namespace UICommon
{
-static constexpr u32 CACHE_REVISION = 25; // Last changed in PR 12702
+static constexpr u32 CACHE_REVISION = 26; // Last changed in PR 10084
std::vector<std::string> FindAllGamePaths(const std::vector<std::string>& directories_to_scan,
bool recursive_scan)
{
static const std::vector<std::string> search_extensions = {
- ".gcm", ".tgc", ".iso", ".ciso", ".gcz", ".wbfs", ".wia",
- ".rvz", ".nfs", ".wad", ".dol", ".elf", ".json"};
+ ".gcm", ".tgc", ".bin", ".iso", ".ciso", ".gcz", ".wbfs",
+ ".wia", ".rvz", ".nfs", ".wad", ".dol", ".elf", ".json"};
// TODO: We could process paths iteratively as they are found
return Common::DoFileSearch(directories_to_scan, search_extensions, recursive_scan);