shithub: choc

Download patch

ref: 730c726d7ea0a98c7ce960609627c6d4abd9a1cd
parent: 90a8fb8c18d4039bb6178608f9bf7fa16ae82547
author: Simon Howard <[email protected]>
date: Thu Sep 8 18:10:40 EDT 2005

Delay calls so we don't use the entire CPU

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 95

--- a/src/d_net.c
+++ b/src/d_net.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*- 
 //-----------------------------------------------------------------------------
 //
-// $Id: d_net.c 71 2005-09-04 18:44:23Z fraggle $
+// $Id: d_net.c 95 2005-09-08 22:10:40Z fraggle $
 //
 // Copyright(C) 1993-1996 Id Software, Inc.
 // Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
 // 02111-1307, USA.
 //
 // $Log$
+// Revision 1.7  2005/09/08 22:10:40  fraggle
+// Delay calls so we don't use the entire CPU
+//
 // Revision 1.6  2005/09/04 18:44:22  fraggle
 // shut up compiler warnings
 //
@@ -50,7 +53,7 @@
 //-----------------------------------------------------------------------------
 
 
-static const char rcsid[] = "$Id: d_net.c 71 2005-09-04 18:44:23Z fraggle $";
+static const char rcsid[] = "$Id: d_net.c 95 2005-09-08 22:10:40Z fraggle $";
 
 
 #include "m_menu.h"
@@ -755,6 +758,8 @@
 	    M_Ticker ();
 	    return;
 	} 
+
+        I_Sleep(1);
     }
     
     // run the count * ticdup dics
--- a/src/i_system.c
+++ b/src/i_system.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*- 
 //-----------------------------------------------------------------------------
 //
-// $Id: i_system.c 80 2005-09-06 22:39:43Z fraggle $
+// $Id: i_system.c 95 2005-09-08 22:10:40Z fraggle $
 //
 // Copyright(C) 1993-1996 Id Software, Inc.
 // Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
 // 02111-1307, USA.
 //
 // $Log$
+// Revision 1.9  2005/09/08 22:10:40  fraggle
+// Delay calls so we don't use the entire CPU
+//
 // Revision 1.8  2005/09/06 22:39:43  fraggle
 // Restore -nosound, -nosfx, -nomusic
 //
@@ -52,7 +55,7 @@
 //-----------------------------------------------------------------------------
 
 static const char
-rcsid[] = "$Id: i_system.c 80 2005-09-06 22:39:43Z fraggle $";
+rcsid[] = "$Id: i_system.c 95 2005-09-08 22:10:40Z fraggle $";
 
 
 #include <stdlib.h>
@@ -162,6 +165,13 @@
 void I_WaitVBL(int count)
 {
     SDL_Delay((count * 1000) / 70);
+}
+
+// Sleep for a specified number of ms
+
+void I_Sleep(int ms)
+{
+    SDL_Delay(ms);
 }
 
 byte*	I_AllocLow(int length)