mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-10 12:01:43 +00:00
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:
parent
e62db0b9fb
commit
f8247e30bd
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ void Host_WriteConfiguration (void)
|
||||||
|
|
||||||
// dedicated servers initialize the host but don't parse and set the
|
// dedicated servers initialize the host but don't parse and set the
|
||||||
// config.cfg cvars
|
// config.cfg cvars
|
||||||
if (host_initialized & !isDedicated)
|
if (host_initialized && !isDedicated)
|
||||||
{
|
{
|
||||||
f = fopen (va("%s/config.cfg", com_gamedir), "w");
|
f = fopen (va("%s/config.cfg", com_gamedir), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
|
|
Loading…
Reference in a new issue