From c4223b7e2c1eec42614bde3b8b63c8e0aad1130b Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Fri, 16 May 2025 17:45:32 -0700 Subject: [PATCH] Only do this on non-Windows --- LEGO1/omni/src/common/mxstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/omni/src/common/mxstring.cpp b/LEGO1/omni/src/common/mxstring.cpp index 050be834..8ddc6a86 100644 --- a/LEGO1/omni/src/common/mxstring.cpp +++ b/LEGO1/omni/src/common/mxstring.cpp @@ -204,7 +204,6 @@ void MxString::MapPathToFilesystem(char* p_path) path++; } -#endif size_t pathLen = SDL_strlen(p_path); @@ -230,4 +229,5 @@ void MxString::MapPathToFilesystem(char* p_path) if (!mapPath(MxOmni::GetHDFiles())) { mapPath(MxOmni::GetCDFiles()); } +#endif }