Fixed uninitialized variable warning

main
Sam Lantinga 2022-09-15 06:21:19 -07:00
parent 61201e06ef
commit 8a15a738f3
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ GLES2_CacheProgram(GLES2_RenderData *data, GLuint vertex, GLuint fragment)
static GLuint static GLuint
GLES2_CacheShader(GLES2_RenderData *data, GLES2_ShaderType type, GLenum shader_type) GLES2_CacheShader(GLES2_RenderData *data, GLES2_ShaderType type, GLenum shader_type)
{ {
GLuint id; GLuint id = 0;
GLint compileSuccessful = GL_FALSE; GLint compileSuccessful = GL_FALSE;
int attempt, num_src; int attempt, num_src;
const GLchar *shader_src_list[2]; const GLchar *shader_src_list[2];