From: John Tsiombikas Date: Sun, 8 May 2022 15:05:25 +0000 (+0300) Subject: fixed uninitialized color in flat untextured z-buffer rasterizer variant X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=commitdiff_plain;h=390d3d37953897e5bd64fe7f1fe88e6a94c7e5dc fixed uninitialized color in flat untextured z-buffer rasterizer variant --- 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