gl_vidlinux: DIE DIE DIE!

cvar.c: use va() for Cvar_SetValue
r_view.c: cvar cleanups
sirf8.S: whitespace
This commit is contained in:
Jeff Teunissen 2000-05-22 03:27:00 +00:00
parent a955b34f46
commit ad03ff24de
6 changed files with 7 additions and 2770 deletions

View file

@ -203,10 +203,7 @@ Cvar_SetValue
*/
void Cvar_SetValue (cvar_t *var_name, float value)
{
char val[32];
sprintf (val, "%f",value);
Cvar_Set (var_name, val);
Cvar_Set (var_name, va("%f", value));
}
/*