Merge branch 'opengl-maybe-uninitialised' into 'master'

Some uninitialised variables that GCC 4.4 complains about

See merge request KartKrew/Kart-Public!177
This commit is contained in:
Sryder 2020-05-20 11:49:34 -04:00
commit 6b8ea22bdb

View file

@ -2002,11 +2002,11 @@ EXPORT void HWRAPI(RenderBatches) (int *sNumPolys, int *sNumVerts, int *sNumCall
boolean stopFlag = false;
boolean changeState = false;
boolean changeShader = false;
GLuint nextShader;
GLuint nextShader = 0U;
boolean changeTexture = false;
GLuint nextTexture;
GLuint nextTexture = 0U;
boolean changePolyFlags = false;
FBITFIELD nextPolyFlags;
FBITFIELD nextPolyFlags = 0U;
boolean changeSurfaceInfo = false;
FSurfaceInfo nextSurfaceInfo;