mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Fix a bunch of cases where we forgot to check for chd files
This commit is contained in:
@@ -830,7 +830,7 @@ std::vector<PSPFileInfo> DirectoryFileSystem::GetDirListing(const std::string &p
|
||||
entry.name = file.name;
|
||||
}
|
||||
if (hideISOFiles) {
|
||||
if (endsWithNoCase(entry.name, ".cso") || endsWithNoCase(entry.name, ".iso")) {
|
||||
if (endsWithNoCase(entry.name, ".cso") || endsWithNoCase(entry.name, ".iso") || endsWithNoCase(entry.name, ".chd")) { // chd not really necessary, but let's hide them too.
|
||||
// Workaround for DJ Max Portable, see compat.ini.
|
||||
continue;
|
||||
} else if (file.isDirectory) {
|
||||
|
||||
Reference in New Issue
Block a user