From: havoc Date: Sun, 19 Dec 2004 00:48:33 +0000 (+0000) Subject: removed videosync code from timedemo X-Git-Tag: xonotic-v0.1.0preview~5277 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=7c8ed271b6e6e54063bb9c80eb266ce8a0f4492e;p=xonotic%2Fdarkplaces.git removed videosync code from timedemo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4862 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_demo.c b/cl_demo.c index 01310b58..cdbc2101 100644 --- 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