mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
silence misleading indentation warnings from clang.
This commit is contained in:
parent
9ca7d499e5
commit
824f01031e
2 changed files with 5 additions and 5 deletions
|
@ -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]);
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue