diff options
Diffstat (limited to 'updater/utils.cpp')
-rw-r--r-- | updater/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/utils.cpp b/updater/utils.cpp index d22aa53..8448217 100644 --- a/updater/utils.cpp +++ b/updater/utils.cpp @@ -207,7 +207,7 @@ void NLogF(const char *fmt, ...) #ifdef _UNICODE
void NLog(wchar_t *msg)
{
- char* a = mir_u2a(msg);
+ char* a = mir_utf8encodeW(msg);
CallService(MS_NETLIB_LOG, (WPARAM)hNetlibUser, (LPARAM)a);
mir_free(a);
}
|