file_util: Use enum instead of bool for specifing path behavior
This commit is contained in:
parent
dad2ae1ee0
commit
2b6128fe0b
4 changed files with 37 additions and 24 deletions
|
|
@ -140,7 +140,7 @@ class GameListWorker : public QObject, public QRunnable {
|
|||
|
||||
public:
|
||||
GameListWorker(FileSys::VirtualFilesystem vfs, QString dir_path, bool deep_scan)
|
||||
: dir_path(std::move(dir_path)), deep_scan(deep_scan) {}
|
||||
: vfs(std::move(vfs)), dir_path(std::move(dir_path)), deep_scan(deep_scan) {}
|
||||
|
||||
public slots:
|
||||
/// Starts the processing of directory tree information.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue