Merge pull request #18439 from sum2012/djmax

Update Directory for DJmax
This commit is contained in:
Henrik Rydgård 2023-11-23 09:24:22 +01:00 committed by GitHub
commit 69e22fb2f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -842,7 +842,7 @@ std::vector<PSPFileInfo> DirectoryFileSystem::GetDirListing(const std::string &p
if (entry.name.size() > 2 && !startsWithNoCase(entry.name, gameID)) {
continue;
}
} else if (file.name == "GAME" || file.name == "TEXTURES" || file.name == "PPSSPP_STATE" || equalsNoCase(file.name, "Cheats")) {
} else if (file.name == "GAME" || file.name == "TEXTURES" || file.name == "PPSSPP_STATE" || file.name == "PLUGINS" || file.name == "SYSTEM" || equalsNoCase(file.name, "Cheats")) {
// The game scans these folders on startup which can take time. Skip them.
continue;
}