From 030b8a7a05e429d31003ca46a4d11deaffa653df Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 24 May 2002 02:59:10 +0000 Subject: [PATCH] add ' fps' to the std deviation line --- qw/source/cl_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_demo.c b/qw/source/cl_demo.c index 6b7cb2962..865ac3d25 100644 --- a/qw/source/cl_demo.c +++ b/qw/source/cl_demo.c @@ -885,7 +885,7 @@ CL_FinishTimeDemo (void) Con_Printf ("timedemo stats for %d runs:\n", timedemo_runs); Con_Printf (" average fps: %.3f\n", average); Con_Printf (" min/max fps: %.3f/%.3f\n", min, max); - Con_Printf ("std deviation: %.3f\n", sqrt (variance)); + Con_Printf ("std deviation: %.3f fps\n", sqrt (variance)); } free (timedemo_data); timedemo_data = 0;