|
From: <el...@us...> - 2004-01-19 17:30:58
|
Update of /cvsroot/alleg/allegro/src/win
In directory sc8-pr-cvs1:/tmp/cvs-serv25444/src/win
Modified Files:
wsystem.c
Log Message:
changed the behavior of yield_timeslice to sleep instead of just yield
Index: wsystem.c
===================================================================
RCS file: /cvsroot/alleg/allegro/src/win/wsystem.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- wsystem.c 25 Oct 2003 13:31:56 -0000 1.51
+++ wsystem.c 19 Jan 2004 17:30:55 -0000 1.52
@@ -427,7 +427,7 @@
*/
static void sys_directx_yield_timeslice(void)
{
- Sleep(0);
+ Sleep(1);
}
|