Fix two "may be used uninitialized" warnings (they can't, as far as I can see).

git-svn-id: https://svn.eduke32.com/eduke32@2937 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-08-19 13:02:47 +00:00
parent 1f858e8fc7
commit 28cc08a65f
1 changed files with 1 additions and 1 deletions

View File

@ -2037,7 +2037,7 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
point3d fp, fp1, fp2, m0, m1, a0;
md3xyzn_t *v0, *v1;
int32_t i, j, k, l, surfi;
float f, g, k0, k1, k2, k3, mat[16];
float f, g, k0, k1, k2=0, k3=0, mat[16]; // inits: compiler-happy
md3surf_t *s;
GLfloat pc[4];
int32_t texunits = GL_TEXTURE0_ARB;