X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=cl_screen.c;h=44b493e4771d4105abb1e3750fe54951a9f174f3;hp=50a9df41fc183545355df6b3371e032ad14522d8;hb=e9206d59c8cde436ea29daa46a587db08f73a111;hpb=4d34e0a632cbc401712f46e10bb9864438b0881f 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; }