From 907be5bd58f7e2af4cb71145985500d9cf06e495 Mon Sep 17 00:00:00 2001 From: Forest Hale Date: Mon, 17 Jul 2000 14:06:33 +0000 Subject: [PATCH] commented out some extend bit reporting code --- source/cl_ents.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/cl_ents.c b/source/cl_ents.c index 0f53c22..4bac67d 100644 --- a/source/cl_ents.c +++ b/source/cl_ents.c @@ -546,14 +546,23 @@ void CL_LinkPacketEntities (void) // his futile attempts to save bandwidth. :) // ent->glowsize = s1->glowsize < 128 ? s1->glowsize * 8.0 : (s1->glowsize - 256) * 8.0; +// if (s1->glowsize != 0) +// Con_Printf("glowsize: %d\n", s1->glowsize); ent->glowcolor = s1->glowcolor; +// if (s1->glowcolor != 254) +// Con_Printf("glowcolor: %d\n", s1->glowcolor); ent->alpha = s1->alpha / 255.0; +// if (s1->alpha != 255) +// Con_Printf("alpha: %d\n", s1->alpha); ent->scale = s1->scale / 16.0; +// if (s1->scale != 16) +// Con_Printf("scale: %d\n", s1->scale); if (s1->colormod == 255) ent->colormod[0] = ent->colormod[1] = ent->colormod[2] = 1; else { +// Con_Printf("colormod: %d\n", s1->colormod); ent->colormod[0] = (float) ((s1->colormod >> 5) & 7) * (1.0 / 7.0); ent->colormod[1] = (float) ((s1->colormod >> 2) & 7) * (1.0 / 7.0); ent->colormod[2] = (float) (s1->colormod & 3) * (1.0 / 3.0);