From b6b9658a819c340baafa6a70633860d243f5f768 Mon Sep 17 00:00:00 2001 From: stpohle Date: Tue, 20 May 2003 18:05:30 +0000 Subject: [PATCH] i wrote the Sleep in d_sleep wrong.. --- src/sysfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sysfunc.c b/src/sysfunc.c index 7032b1f..8abda9a 100644 --- a/src/sysfunc.c +++ b/src/sysfunc.c @@ -1,4 +1,4 @@ -/* $Id: sysfunc.c,v 1.14 2003/05/19 21:55:55 stpohle Exp $ +/* $Id: sysfunc.c,v 1.15 2003/05/20 18:05:30 stpohle Exp $ sysfunc.c - this file hold some routines for the system functions.. like d_delay */ @@ -13,7 +13,7 @@ void s_delay (int ms) { #ifdef _WIN32 - sleep (ms); /* i hope this works on windows.. on MSVC it + Sleep (ms); /* i hope this works on windows.. on MSVC it should but with MINGW i don't know yet */ #else fd_set selectset;