aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-05-08 09:13:16 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-05-08 09:13:16 +0000
commit5921795edceaeaa4970e20fdc2d0c6c17a1a5de9 (patch)
tree038c4dc832f0a73080debba19d38d430d0ff1755 /code/qcommon
parent498491547f61f6ba5311fd8330d2a2a453c2d972 (diff)
downloadioquake3-aero-5921795edceaeaa4970e20fdc2d0c6c17a1a5de9.tar.gz
ioquake3-aero-5921795edceaeaa4970e20fdc2d0c6c17a1a5de9.zip
make Cvar_Command use all arguments just like Cvar_Set_f (#4063)
git-svn-id: svn://svn.icculus.org/quake3/trunk@1546 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/cvar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/cvar.c b/code/qcommon/cvar.c
index abab453..278b990 100644
--- a/code/qcommon/cvar.c
+++ b/code/qcommon/cvar.c
@@ -652,7 +652,7 @@ qboolean Cvar_Command( void ) {
}
// set the value if forcing isn't required
- Cvar_Set2 (v->name, Cmd_Argv(1), qfalse);
+ Cvar_Set2 (v->name, Cmd_Args(), qfalse);
return qtrue;
}