From 390d3d37953897e5bd64fe7f1fe88e6a94c7e5dc Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sun, 8 May 2022 18:05:25 +0300 Subject: [PATCH] fixed uninitialized color in flat untextured z-buffer rasterizer variant --- src/3dgfx/polytmpl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/3dgfx/polytmpl.h b/src/3dgfx/polytmpl.h index 167d5e1..62692fa 100644 --- a/src/3dgfx/polytmpl.h +++ b/src/3dgfx/polytmpl.h @@ -101,7 +101,8 @@ void POLYFILL(struct pvertex *pv, int nverts) #if defined(GOURAUD) || defined(TEXMAP) || defined(ZBUF) int mid; int32_t dx, tmp; -#else +#endif +#if !defined(GOURAUD) && !defined(TEXMAP) /* flat version, just pack the color now */ color = G3D_PACK_RGB(pv[0].r, pv[0].g, pv[0].b); #endif -- 1.7.10.4