diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-29 15:21:51 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-29 15:22:29 +0200 |
commit | e0d02d032bfb937113ebc17a84fac82e5e1cfa86 (patch) | |
tree | 3bae811f9e5907fce7041d8b89fdea66bade80ad /src | |
parent | Merge pull request #4442 from lioncash/devicemem (diff) | |
download | yuzu-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')
-rw-r--r-- | src/yuzu/game_list_worker.cpp | 4 |
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); } |