Fix Go!Explore🗺️🧭 issue with GetDirListing(/); closes #15932

This commit is contained in:
Florin9doi
2024-01-04 14:47:07 +02:00
parent 1f8191ec9b
commit 777569e4c4
+3
View File
@@ -647,6 +647,9 @@ std::vector<PSPFileInfo> ISOFileSystem::GetDirListing(const std::string &path, b
*exists = false;
return myVector;
}
if (entry == &entireISO) {
entry = GetFromPath("/");
}
const std::string dot(".");
const std::string dotdot("..");