aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/game_list_worker.cpp
diff options
context:
space:
mode:
authorZach Hilman <DarkLordZach@users.noreply.github.com>2020-02-09 12:08:01 -0500
committerGitHub <noreply@github.com>2020-02-09 12:08:01 -0500
commit21c3f4827908cf960938c593cdc64684044773aa (patch)
treeeb4c47c246f90e6d0fb85e91eab5b783871c9f53 /src/yuzu/game_list_worker.cpp
parenta952fbc5b385fb133ad7534c8defc128878bb1dc (diff)
parentfcf3425b1b153b9182e29e4b8506445ec3a13e47 (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.cpp3
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;
}