mach64: Silence uninitialized variable warnings.

This commit is contained in:
Vinson Lee 2009-12-14 17:20:34 -08:00
parent 6c9870b54c
commit b18fa9f448

View file

@ -1297,7 +1297,8 @@ do { \
#define LOCAL_VARS(n) \
mach64ContextPtr mmesa = MACH64_CONTEXT(ctx); \
GLuint color[n], spec[n]; \
GLuint color[n] = { 0 }; \
GLuint spec[n] = { 0 }; \
GLuint vertex_size = mmesa->vertex_size; \
const GLuint xyoffset = 9; \
const GLuint coloroffset = 8; \