silence misleading indentation warnings from clang.

This commit is contained in:
Ozkan Sezer 2021-06-28 03:01:02 +03:00
parent 9ca7d499e5
commit 824f01031e
2 changed files with 5 additions and 5 deletions

View file

@ -1679,10 +1679,10 @@ void Mod_LoadClipnodes (lump_t *l, qboolean bsp2)
{
out->planenum = LittleLong(ins->planenum);
//johnfitz -- bounds check
if (out->planenum < 0 || out->planenum >= loadmodel->numplanes)
Host_Error ("Mod_LoadClipnodes: planenum out of bounds");
//johnfitz
//johnfitz -- bounds check
if (out->planenum < 0 || out->planenum >= loadmodel->numplanes)
Host_Error ("Mod_LoadClipnodes: planenum out of bounds");
//johnfitz
//johnfitz -- support clipnodes > 32k
out->children[0] = (unsigned short)LittleShort(ins->children[0]);

View file

@ -848,7 +848,7 @@ void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg)
bits |= SU_ARMOR;
// if (ent->v.weapon)
bits |= SU_WEAPON;
bits |= SU_WEAPON;
//johnfitz -- PROTOCOL_FITZQUAKE
if (sv.protocol != PROTOCOL_NETQUAKE)