Remove extra semicolons at the ends of some lines.

This commit is contained in:
Rohit Nirmal
2014-09-10 12:17:38 -04:00
parent 71cb09f1ca
commit c0f7cab3f5
3 changed files with 3 additions and 3 deletions

View File

@ -243,7 +243,7 @@ bool ProgramShaderCache::CompileShader(SHADER& shader, const char* vcode, const
return false;
}
GLuint pid = shader.glprogid = glCreateProgram();;
GLuint pid = shader.glprogid = glCreateProgram();
glAttachShader(pid, vsid);
glAttachShader(pid, psid);