Fixed: Use nlUtf8ToWide macro instead of utf8ToWide function

--HG--
branch : develop
feature/streamed-package
kervala 5 years ago
parent 9d9819f1c0
commit 71b65b9564

@ -135,7 +135,7 @@ CApplicationContext::~CApplicationContext()
std::string message = toString("Instance '%s' still allocated at %p", it->first.c_str(), it->second);
#ifdef NL_OS_WINDOWS
OutputDebugStringW(utf8ToWide(message));
OutputDebugStringW(nlUtf8ToWide(message));
#else
printf("%s\n", message.c_str());
#endif

Loading…
Cancel
Save