X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=cl_screen.c;h=44b493e4771d4105abb1e3750fe54951a9f174f3;hp=50a9df41fc183545355df6b3371e032ad14522d8;hb=b2a1a3ffa49a3f315f9f59aa011c5888ad4bea4b;hpb=bfd441930916e7a29200ea42d5d8edfcc2baa806 diff --git a/cl_screen.c b/cl_screen.c index 50a9df41..44b493e4 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -1206,7 +1206,7 @@ static void SCR_CaptureVideo_VideoFrame(int newframestepframenum) double fps1 = (cls.capturevideo.frame - cls.capturevideo.lastfpsframe) / (t - cls.capturevideo.lastfpstime + 0.0000001); double fps = (cls.capturevideo.frame ) / (t - cls.capturevideo.starttime + 0.0000001); dpsnprintf(buf, sizeof(buf), "capturevideo: (%.1fs) last second %.3ffps, total %.3ffps\n", cls.capturevideo.frame / cls.capturevideo.framerate, fps1, fps); - Sys_PrintToTerminal(buf); + Sys_Print(buf); cls.capturevideo.lastfpstime = t; cls.capturevideo.lastfpsframe = cls.capturevideo.frame; }