From 104df063b1ff52b4f80d7fc3c98ba58a3855d13f Mon Sep 17 00:00:00 2001 From: Fletcher Dunn Date: Sat, 12 Jan 2019 17:49:56 -0800 Subject: [PATCH] Fix windows compile. --- examples/example_chat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example_chat.cpp b/examples/example_chat.cpp index 9a0e6cc..b784e58 100644 --- a/examples/example_chat.cpp +++ b/examples/example_chat.cpp @@ -43,7 +43,7 @@ SteamNetworkingMicroseconds g_logTimeZero; // down the thread that is reading from stdin. static void NukeProcess( int rc ) { - #ifdef WINDOWS + #ifdef WIN32 ExitProcess( rc ); #else kill( getpid(), SIGKILL );