From 358d218e8f8491a3f6b3a99c97bf1a50ea562449 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Thu, 28 May 2026 00:17:25 +0200 Subject: [PATCH] Fix Windows Unicode paths in disk mods oops --- src/dusk/modding/bundle_disk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dusk/modding/bundle_disk.cpp b/src/dusk/modding/bundle_disk.cpp index c6260a771d..60b8a19369 100644 --- a/src/dusk/modding/bundle_disk.cpp +++ b/src/dusk/modding/bundle_disk.cpp @@ -55,7 +55,7 @@ size_t ModBundleDisk::getFileSize(const std::string& fileName) { std::filesystem::path ModBundleDisk::toRealPath(const std::string& fileName) const { const fs::path filePath = reinterpret_cast(fileName.c_str()); - return root_path / fileName; + return root_path / filePath; } } // namespace dusk::modding \ No newline at end of file