From 777569e4c428564519da80e58b6b14ff440d3089 Mon Sep 17 00:00:00 2001 From: Florin9doi Date: Thu, 4 Jan 2024 14:43:07 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20Go!Explore=F0=9F=97=BA=EF=B8=8F?= =?UTF-8?q?=F0=9F=A7=AD=20issue=20with=20GetDirListing(/);=20closes=20#159?= =?UTF-8?q?32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Core/FileSystems/ISOFileSystem.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/FileSystems/ISOFileSystem.cpp b/Core/FileSystems/ISOFileSystem.cpp index 4fb682684e04..f070ff362f04 100644 --- a/Core/FileSystems/ISOFileSystem.cpp +++ b/Core/FileSystems/ISOFileSystem.cpp @@ -647,6 +647,9 @@ std::vector ISOFileSystem::GetDirListing(const std::string &path, b *exists = false; return myVector; } + if (entry == &entireISO) { + entry = GetFromPath("/"); + } const std::string dot("."); const std::string dotdot("..");