From 40a783207cb40eca544ec4d3f7b24b128ca49ccd Mon Sep 17 00:00:00 2001 From: Acemany Date: Fri, 13 Mar 2026 20:46:48 +0300 Subject: [PATCH] Windows should support regular slashes --- Minecraft.World/IO/Files/File.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Minecraft.World/IO/Files/File.cpp b/Minecraft.World/IO/Files/File.cpp index 9ff7860d3..839acdcd2 100644 --- a/Minecraft.World/IO/Files/File.cpp +++ b/Minecraft.World/IO/Files/File.cpp @@ -10,11 +10,7 @@ #include #endif -#ifdef __linux__ const wchar_t File::pathSeparator = L'/'; -#else -const wchar_t File::pathSeparator = L'\\'; -#endif #ifdef _XBOX const std::wstring File::pathRoot = L"GAME:"; // Path root after pathSeparator has been removed