diff --git a/code/nel/include/nel/misc/common.h b/code/nel/include/nel/misc/common.h index c677a01bf..f1c090c2b 100644 --- a/code/nel/include/nel/misc/common.h +++ b/code/nel/include/nel/misc/common.h @@ -291,7 +291,7 @@ inline sint nlstricmp(const char *lhs, const std::string &rhs) { return stricmp( #define tStrToUtf8(str) (ucstring((ucchar*)(LPCWSTR)str).toUtf8()) #define utf8ToTStr(str) ((wchar_t*)ucstring::makeFromUtf8(str).c_str()) #else -#define tStrToUtf8(str) ((LPCSTR)str) +#define tStrToUtf8(str) (std::string((LPCSTR)str)) #define utf8ToTStr(str) (str.c_str()) #endif