mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-24 09:43:08 +00:00
Merge pull request #4450 from Morph1984/fix-gamelist-scanning
game_list_worker: Fix game list subdirectory scanning
This commit is contained in:
commit
c71d05de84
|
@ -369,8 +369,8 @@ void GameListWorker::run() {
|
||||||
auto* const game_list_dir = new GameListDir(game_dir);
|
auto* const game_list_dir = new GameListDir(game_dir);
|
||||||
emit DirEntryReady(game_list_dir);
|
emit DirEntryReady(game_list_dir);
|
||||||
provider->ClearAllEntries();
|
provider->ClearAllEntries();
|
||||||
ScanFileSystem(ScanTarget::FillManualContentProvider, game_dir.path.toStdString(), 2,
|
ScanFileSystem(ScanTarget::FillManualContentProvider, game_dir.path.toStdString(),
|
||||||
game_list_dir);
|
game_dir.deep_scan ? 256 : 0, game_list_dir);
|
||||||
ScanFileSystem(ScanTarget::PopulateGameList, game_dir.path.toStdString(),
|
ScanFileSystem(ScanTarget::PopulateGameList, game_dir.path.toStdString(),
|
||||||
game_dir.deep_scan ? 256 : 0, game_list_dir);
|
game_dir.deep_scan ? 256 : 0, game_list_dir);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue