summaryrefslogtreecommitdiffstats
path: root/src/yuzu/game_list_worker.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-07-29 15:21:51 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-07-29 15:22:29 +0200
commite0d02d032bfb937113ebc17a84fac82e5e1cfa86 (patch)
tree3bae811f9e5907fce7041d8b89fdea66bade80ad /src/yuzu/game_list_worker.cpp
parentMerge pull request #4442 from lioncash/devicemem (diff)
downloadyuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar.gz
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar.bz2
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar.lz
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar.xz
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.tar.zst
yuzu-e0d02d032bfb937113ebc17a84fac82e5e1cfa86.zip
Diffstat (limited to 'src/yuzu/game_list_worker.cpp')
-rw-r--r--src/yuzu/game_list_worker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp
index 2018150db..239016b94 100644
--- a/src/yuzu/game_list_worker.cpp
+++ b/src/yuzu/game_list_worker.cpp
@@ -369,8 +369,8 @@ void GameListWorker::run() {
auto* const game_list_dir = new GameListDir(game_dir);
emit DirEntryReady(game_list_dir);
provider->ClearAllEntries();
- ScanFileSystem(ScanTarget::FillManualContentProvider, game_dir.path.toStdString(), 2,
- game_list_dir);
+ ScanFileSystem(ScanTarget::FillManualContentProvider, game_dir.path.toStdString(),
+ game_dir.deep_scan ? 256 : 0, game_list_dir);
ScanFileSystem(ScanTarget::PopulateGameList, game_dir.path.toStdString(),
game_dir.deep_scan ? 256 : 0, game_list_dir);
}