summaryrefslogtreecommitdiff
path: root/src/video/dedicated_v.cpp
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2016-10-30 18:22:55 +0000
committermichi_cc <michi_cc@openttd.org>2016-10-30 18:22:55 +0000
commitc83306391e78d660b4c7b1bfef4008ccd5c7e172 (patch)
tree017d634c46d1344a498e441b811972601f162028 /src/video/dedicated_v.cpp
parentb2fe2c6e3d5570861fcca497da4c7dc8d94078cf (diff)
downloadopenttd-c83306391e78d660b4c7b1bfef4008ccd5c7e172.tar.xz
(svn r27673) -Add: [Win32] Thread names for windows debuggers.
Diffstat (limited to 'src/video/dedicated_v.cpp')
-rw-r--r--src/video/dedicated_v.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp
index e038df975..5e2be481c 100644
--- a/src/video/dedicated_v.cpp
+++ b/src/video/dedicated_v.cpp
@@ -84,6 +84,7 @@ static void DedicatedSignalHandler(int sig)
# endif
# include <time.h>
# include <tchar.h>
+# include "../os/windows/win32.h"
static HANDLE _hInputReady, _hWaitForInputHandling;
static HANDLE _hThread; // Thread to close
static char _win_console_thread_buffer[200];
@@ -95,6 +96,8 @@ static void WINAPI CheckForConsoleInput()
/* WinCE doesn't support console stuff */
return;
#else
+ SetWin32ThreadName(-1, "ottd:win-console");
+
DWORD nb;
HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
for (;;) {