diff options
| author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2020-02-09 12:08:01 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-09 12:08:01 -0500 |
| commit | 21c3f4827908cf960938c593cdc64684044773aa (patch) | |
| tree | eb4c47c246f90e6d0fb85e91eab5b783871c9f53 /src/yuzu/game_list_worker.cpp | |
| parent | a952fbc5b385fb133ad7534c8defc128878bb1dc (diff) | |
| parent | fcf3425b1b153b9182e29e4b8506445ec3a13e47 (diff) | |
Merge pull request #3391 from Morph1984/remove-unknown
Remove option "Show files with type 'Unknown'"
Diffstat (limited to 'src/yuzu/game_list_worker.cpp')
| -rw-r--r-- | src/yuzu/game_list_worker.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp index 4c81ef12b..da2c27aa2 100644 --- a/src/yuzu/game_list_worker.cpp +++ b/src/yuzu/game_list_worker.cpp @@ -298,8 +298,7 @@ void GameListWorker::ScanFileSystem(ScanTarget target, const std::string& dir_pa } const auto file_type = loader->GetFileType(); - if ((file_type == Loader::FileType::Unknown || file_type == Loader::FileType::Error) && - !UISettings::values.show_unknown) { + if (file_type == Loader::FileType::Unknown || file_type == Loader::FileType::Error) { return true; } |
