Skip to content

Commit

Permalink
Merge pull request #18665 from Florin9doi/fix_15932
Browse files Browse the repository at this point in the history
Fix Go!Explore🗺️🧭 issue with GetDirListing(/); closes #15932
  • Loading branch information
hrydgard committed Jan 6, 2024
2 parents 1f8191e + 777569e commit 3b6a87b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Core/FileSystems/ISOFileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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("..");
Expand Down

0 comments on commit 3b6a87b

Please sign in to comment.