mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
1f858e8fc7
commit
28cc08a65f
1 changed files with 1 additions and 1 deletions
|
@ -2037,7 +2037,7 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
||||||
point3d fp, fp1, fp2, m0, m1, a0;
|
point3d fp, fp1, fp2, m0, m1, a0;
|
||||||
md3xyzn_t *v0, *v1;
|
md3xyzn_t *v0, *v1;
|
||||||
int32_t i, j, k, l, surfi;
|
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;
|
md3surf_t *s;
|
||||||
GLfloat pc[4];
|
GLfloat pc[4];
|
||||||
int32_t texunits = GL_TEXTURE0_ARB;
|
int32_t texunits = GL_TEXTURE0_ARB;
|
||||||
|
|
Loading…
Reference in a new issue