Correct a few OpenGL variable types

Affectly no change for desktop OpenGL.
Use correct types for OpenGLES support.
This commit is contained in:
Zack Middleton 2014-11-16 11:53:12 -06:00
parent 89b719ec8d
commit 22bcda018b
4 changed files with 6 additions and 5 deletions

View file

@ -907,7 +907,8 @@ RB_SurfaceFace
*/
static void RB_SurfaceFace( srfSurfaceFace_t *surf ) {
int i;
unsigned *indices, *tessIndexes;
unsigned *indices;
glIndex_t *tessIndexes;
float *v;
float *normal;
int ndx;