]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
removed videosync code from timedemo
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 19 Dec 2004 00:48:33 +0000 (00:48 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 19 Dec 2004 00:48:33 +0000 (00:48 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4862 d7cf8633-e32d-0410-b094-e92efae38249

cl_demo.c

index 01310b58805b2d1ce4e8d6427b4f1becf96fc35c..cdbc2101efcf4e90369662e5cc66b6cd2b988246 100644 (file)
--- a/cl_demo.c
+++ b/cl_demo.c
@@ -383,11 +383,6 @@ void CL_FinishTimeDemo (void)
        // LordHavoc: timedemo now prints out 7 digits of fraction, and min/avg/max
        Con_Printf("%i frames %5.7f seconds %5.7f fps\nmin/avg/max: %5.7f/%5.7f/%5.7f\n", frames, time, fpsavg, fpsmin, fpsavg, fpsmax);
        Log_Printf("benchmark.log", "date %s | enginedate %s | demo %s | commandline %s | result %i frames %5.7f seconds %5.7f fps min/avg/max: %5.7f/%5.7f/%5.7f\n", Sys_TimeString("%Y-%m-%d %H:%M:%S"), buildstring, cls.demoname, cmdline.string, frames, time, fpsavg, fpsmin, fpsavg, fpsmax);
-       if (gl_videosyncavailable)
-       {
-               Cvar_SetValueQuick (&vid_vsync, old_vsync);
-               qwglSwapIntervalEXT (old_vsync);
-       }
        if (COM_CheckParm("-benchmark"))
                Host_Quit_f();
 }
@@ -410,13 +405,6 @@ void CL_TimeDemo_f (void)
                return;
        }
 
-       if (gl_videosyncavailable)
-       {
-               old_vsync = vid_vsync.integer;
-               Cvar_SetValueQuick (&vid_vsync, 0);
-               qwglSwapIntervalEXT (0);
-       }
-
        CL_PlayDemo_f ();
 
 // cls.td_starttime will be grabbed at the second frame of the demo, so