Remove option "Show files with type 'Unknown'"

This commit is contained in:
Morph
2020-02-09 11:30:02 -05:00
parent c18f9898d9
commit fcf3425b1b
5 changed files with 1 additions and 15 deletions

View File

@ -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;
}