Merge pull request #4450 from Morph1984/fix-gamelist-scanning

game_list_worker: Fix game list subdirectory scanning
pull/8/head
bunnei 5 years ago committed by GitHub
commit c71d05de84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);
}

Loading…
Cancel
Save