]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix another win32 time typo
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 27 Feb 2010 15:07:21 +0000 (15:07 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 27 Feb 2010 15:07:21 +0000 (15:07 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10018 d7cf8633-e32d-0410-b094-e92efae38249

sys_win.c

index 5079e6ac57f3fccbdb9da3ee1e5bfa133eb2d3e1..2ed54abcac1775b6c784e4780cb62c7918d6a511 100644 (file)
--- a/sys_win.c
+++ b/sys_win.c
@@ -30,8 +30,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "conproc.h"
 #include "direct.h"
 
-cvar_t sys_usetimegettime = {CVAR_SAVE, "sys_usetimegettime", "1", "use windows timeGetTime function (which has issues on some motherboards) for timing rather than QueryPerformanceCounter timer (which has issues on multicore/multiprocessor machines and processors which are designed to conserve power)"};
-
 HANDLE                         hinput, houtput;
 
 #ifdef QHOST
@@ -199,16 +197,6 @@ char *Sys_ConsoleInput (void)
        return NULL;
 }
 
-double Sys_DoubleTime (void)
-{
-       return Sys_DoubleTime_Shared();
-}
-
-void Sys_Sleep(int microseconds)
-{
-       Sys_Sleep_Shared(microseconds);
-}
-
 char *Sys_GetClipboardData (void)
 {
        char *data = NULL;