From fd4ffc81b2593dbf5554b553828a736ac6263e98 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 2 Jun 2024 14:21:13 +0200 Subject: Core/Misc: Fixed windows _UNICODE incompatibilities --- src/server/worldserver/Main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/server/worldserver/Main.cpp') diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp index 74cd544965e..e781fb8b95e 100644 --- a/src/server/worldserver/Main.cpp +++ b/src/server/worldserver/Main.cpp @@ -81,9 +81,10 @@ namespace fs = boost::filesystem; #ifdef _WIN32 #include "ServiceWin32.h" -char serviceName[] = "worldserver"; -char serviceLongName[] = "TrinityCore world service"; -char serviceDescription[] = "TrinityCore World of Warcraft emulator world service"; +#include +TCHAR serviceName[] = _T("worldserver"); +TCHAR serviceLongName[] = _T("TrinityCore world service"); +TCHAR serviceDescription[] = _T("TrinityCore World of Warcraft emulator world service"); /* * -1 - not in service mode * 0 - stopped -- cgit v1.2.3