summaryrefslogtreecommitdiff
path: root/Source/Core/UICommon/GameFileCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/UICommon/GameFileCache.cpp')
-rw-r--r--Source/Core/UICommon/GameFileCache.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/UICommon/GameFileCache.cpp b/Source/Core/UICommon/GameFileCache.cpp
index dbb349dad9..675ec0dc43 100644
--- a/Source/Core/UICommon/GameFileCache.cpp
+++ b/Source/Core/UICommon/GameFileCache.cpp
@@ -27,14 +27,14 @@
namespace UICommon
{
-static constexpr u32 CACHE_REVISION = 21; // Last changed in PR 10187
+static constexpr u32 CACHE_REVISION = 22; // Last changed in PR 10932
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",
- ".wad", ".dol", ".elf", ".json"};
+ static const std::vector<std::string> search_extensions = {
+ ".gcm", ".tgc", ".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);