diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-06 23:21:37 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-08 21:18:45 -0400 |
commit | 2b6128fe0b8788318a4bbe1fc55ea14aed2981e4 (patch) | |
tree | 39a8c25dbea98e2f8b5761f408d62cf1669f89bc /src/yuzu | |
parent | dad2ae1ee01b42bb6bb8a903c856712fc2bffa37 (diff) |
file_util: Use enum instead of bool for specifing path behavior
Diffstat (limited to 'src/yuzu')
-rw-r--r-- | src/yuzu/game_list_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index 49a3f6181..114a0fc7f 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -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. |