From 83e0754e4146475670dd289cf7f71f0767d92da8 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 14 May 2001 05:21:27 +0000 Subject: [PATCH] fix missing "" around cvar default --- qw/source/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_main.c b/qw/source/cl_main.c index b233b78ff..8ca579ece 100644 --- a/qw/source/cl_main.c +++ b/qw/source/cl_main.c @@ -1256,7 +1256,7 @@ CL_Init_Cvars (void) "maximum frames rendered in one second. 0 == 32"); cl_timeout = Cvar_Get ("cl_timeout", "60", CVAR_ARCHIVE, NULL, "server " "connection timeout (since last packet received)"); - host_speeds = Cvar_Get ("host_speeds", 0, CVAR_NONE, NULL, + host_speeds = Cvar_Get ("host_speeds", "0", CVAR_NONE, NULL, "display host processing times"); lookspring = Cvar_Get ("lookspring", "0", CVAR_ARCHIVE, NULL, "Snap view " "to center when moving and no mlook/klook");