Core/VirtualDirectoryFilesystemResolver: Fix unicode path

This commit is contained in:
SirLynix 2023-05-30 19:09:11 +02:00
parent ae5b1dc485
commit d310bf478b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace Nz
{
std::filesystem::path filePath = m_physicalPath;
for (std::size_t i = 0; i < partCount; ++i)
filePath /= parts[i];
filePath /= Utf8Path(parts[i]);
std::filesystem::file_status status = std::filesystem::status(filePath); //< FIXME: This will follow symlink, is this the intended behavior? (see symlink_status)