This commit is contained in:
Christian Semmler 2025-06-20 15:34:57 -07:00
parent 6b5d08f387
commit bbaf2f507e

View File

@ -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; }