summaryrefslogtreecommitdiff
path: root/source/sv_ac.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/sv_ac.c')
-rw-r--r--source/sv_ac.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/sv_ac.c b/source/sv_ac.c
index e481c9a..e08caed 100644
--- a/source/sv_ac.c
+++ b/source/sv_ac.c
@@ -1158,7 +1158,11 @@ STARTUP STUFF
static void AC_Spin( void ) {
// sleep on stdin and AC server socket
- IO_Sleepv( 100, 0, ac.stream.socket, -1 );
+ IO_Sleepv( 100,
+#ifdef __unix__
+ 0,
+#endif
+ ac.stream.socket, -1 );
#if USE_SYSCON
Sys_RunConsole();
#endif