diff options
| author | Shauren <shauren.trinity@gmail.com> | 2024-06-02 14:21:13 +0200 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2024-06-20 01:15:34 +0200 |
| commit | 970ca6093c590d390d6cfd649ce7f8a9febbd5f7 (patch) | |
| tree | 94bcae1e0b71b09139343ab0efdc60f2309b4ead /src/server/worldserver | |
| parent | b6714f5746dd2468488b51a6f2b9eb26a6c155e9 (diff) | |
Core/Misc: Fixed windows _UNICODE incompatibilities
(cherry picked from commit fd4ffc81b2593dbf5554b553828a736ac6263e98)
Diffstat (limited to 'src/server/worldserver')
| -rw-r--r-- | src/server/worldserver/Main.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
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.h> +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 |
