diff options
Diffstat (limited to 'Source/Core/UICommon/GameFileCache.cpp')
| -rw-r--r-- | Source/Core/UICommon/GameFileCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/UICommon/GameFileCache.cpp b/Source/Core/UICommon/GameFileCache.cpp index 30bbca924b..a1b55b3614 100644 --- a/Source/Core/UICommon/GameFileCache.cpp +++ b/Source/Core/UICommon/GameFileCache.cpp @@ -45,7 +45,7 @@ GameFileCache::GameFileCache() : m_path(File::GetUserPath(D_CACHE_IDX) + "gameli void GameFileCache::ForEach(std::function<void(const std::shared_ptr<const GameFile>&)> f) const { - for (const std::shared_ptr<const GameFile>& item : m_cached_files) + for (const std::shared_ptr<GameFile>& item : m_cached_files) f(item); } |
