From 2530186c5e3768b4e06a0ff97d3aa14263920501 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 19 Jun 2000 23:12:55 +0000 Subject: [PATCH] make r_firecolor more forgiving for old config files. prints a warning if the old second alpha parameter is given, but accepts the other args. --- source/gl_part.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/gl_part.c b/source/gl_part.c index 1a8e58f..7f76bec 100644 --- a/source/gl_part.c +++ b/source/gl_part.c @@ -818,7 +818,9 @@ R_FireColor_f(void) r_firecolor_flame[3]); return; } - if (Cmd_Argc() !=5) { + if (Cmd_Argc() == 6) { + Con_Printf ("Warning: obsolete 5th parameter to r_firecolor ignored\n"); + } else if (Cmd_Argc() !=5) { Con_Printf ("Usage r_firecolor R G B A\n"); return; }