host.c (Host_WriteConfiguration): change bitwise and into logical and.

seems like a typo in original quake source.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1561 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2018-02-16 06:03:25 +00:00
parent e62db0b9fb
commit f8247e30bd

View file

@ -302,7 +302,7 @@ void Host_WriteConfiguration (void)
// dedicated servers initialize the host but don't parse and set the
// config.cfg cvars
if (host_initialized & !isDedicated)
if (host_initialized && !isDedicated)
{
f = fopen (va("%s/config.cfg", com_gamedir), "w");
if (!f)