Skip to content

Commit

Permalink
Update Directory for DJmax
Browse files Browse the repository at this point in the history
  • Loading branch information
sum2012 committed Nov 22, 2023
1 parent 4d7f00f commit d0fced8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/FileSystems/DirectoryFileSystem.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit d0fced8

Please sign in to comment.