From bbaf2f507eb0ec6388445bfea1634774511a6ed6 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Fri, 20 Jun 2025 15:34:57 -0700 Subject: [PATCH] Fix --- LEGO1/omni/include/mxstring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/omni/include/mxstring.h b/LEGO1/omni/include/mxstring.h index ef19855f..89ebcd5f 100644 --- a/LEGO1/omni/include/mxstring.h +++ b/LEGO1/omni/include/mxstring.h @@ -18,7 +18,7 @@ class MxString : public MxCore { void Reverse(); void ToUpperCase(); void ToLowerCase(); - LEGO1_EXPORT void MapPathToFilesystem() { MapPathToFilesystem(m_data); } + void MapPathToFilesystem() { MapPathToFilesystem(m_data); } MxString& operator=(const MxString& p_str); const MxString& operator=(const char* p_str); @@ -27,7 +27,7 @@ class MxString : public MxCore { MxString& operator+=(const char* p_str); static void CharSwap(char* p_a, char* p_b); - static void MapPathToFilesystem(char* p_path); + LEGO1_EXPORT static void MapPathToFilesystem(char* p_path); // FUNCTION: BETA10 0x10017c50 char* GetData() const { return m_data; }