diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-05-08 09:13:16 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-05-08 09:13:16 +0000 |
commit | 5921795edceaeaa4970e20fdc2d0c6c17a1a5de9 (patch) | |
tree | 038c4dc832f0a73080debba19d38d430d0ff1755 /code/qcommon | |
parent | 498491547f61f6ba5311fd8330d2a2a453c2d972 (diff) | |
download | ioquake3-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.c | 2 |
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; } |