From 824f01031eb107e12f4d11a83a8b31059208576f Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Mon, 28 Jun 2021 03:01:02 +0300 Subject: [PATCH] silence misleading indentation warnings from clang. --- Quake/gl_model.c | 8 ++++---- Quake/sv_main.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Quake/gl_model.c b/Quake/gl_model.c index 03f66c44..e63a8e9a 100644 --- a/Quake/gl_model.c +++ b/Quake/gl_model.c @@ -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]); diff --git a/Quake/sv_main.c b/Quake/sv_main.c index d358a61d..ed3722d2 100644 --- a/Quake/sv_main.c +++ b/Quake/sv_main.c @@ -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)