From 71b65b956449a20a25f3fd51f2eb32df215d758d Mon Sep 17 00:00:00 2001 From: kervala Date: Fri, 11 Oct 2019 20:00:16 +0200 Subject: [PATCH] Fixed: Use nlUtf8ToWide macro instead of utf8ToWide function --HG-- branch : develop --- code/nel/src/misc/app_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/misc/app_context.cpp b/code/nel/src/misc/app_context.cpp index a7381d026..73c9aa1b3 100644 --- a/code/nel/src/misc/app_context.cpp +++ b/code/nel/src/misc/app_context.cpp @@ -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