diff --git a/Core/FileSystems/MetaFileSystem.cpp b/Core/FileSystems/MetaFileSystem.cpp index a6fa2330d7..5cb50c7e01 100644 --- a/Core/FileSystems/MetaFileSystem.cpp +++ b/Core/FileSystems/MetaFileSystem.cpp @@ -29,7 +29,8 @@ static bool ApplyPathStringToComponentsVector(std::vector &vector, while (start < len) { - size_t i = pathString.find('/', start); + // TODO: This should only be done for ms0:/ etc. + size_t i = pathString.find_first_of('/\\', start); if (i == std::string::npos) i = len;