Silence warning about vid_fsaa requiring restart when parsing config.cfg at startup. Add missing newline to warning message.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@982 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Eric Wasylishen 2014-08-30 03:22:36 +00:00
parent 745fa7ecce
commit bdca64b93b

View file

@ -872,7 +872,9 @@ VID_FSAA_f -- ericw -- warn that vid_fsaa requires engine restart
*/
static void VID_FSAA_f (cvar_t *var)
{
Con_Printf("%s %d requires engine restart to take effect", var->name, (int)var->value);
// don't print the warning if vid_fsaa is set during startup
if (vid_initialized)
Con_Printf("%s %d requires engine restart to take effect\n", var->name, (int)var->value);
}
//==========================================================================