mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 22:01:50 +00:00
Clarified the braces, at GCC's prompting.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@220 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
f9927aac27
commit
8641df62aa
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ void SV_SaveLevelCache(qboolean dontharmgame)
|
|||
fprintf (f, "%s\n", comment);
|
||||
for (cl = svs.clients, clnum=0; clnum < MAX_CLIENTS; cl++,clnum++)//fake dropping
|
||||
{
|
||||
if (cl->state < cs_spawned && !cl->istobeloaded || dontharmgame) //don't drop if they are still connecting
|
||||
if ((cl->state < cs_spawned && !cl->istobeloaded) || dontharmgame) //don't drop if they are still connecting
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue