Commit cfaf5059 authored by Jan Zerebecki's avatar Jan Zerebecki Committed by Alexandre Julliard

opengl32: Remove redundant const.

parent 30671815
......@@ -195,7 +195,7 @@ static BOOL is_extension_supported(const char* extension)
if(strncmp(extension, "GL_VERSION_", 11) == 0)
{
const GLubyte *gl_version = glGetString(GL_VERSION);
const const char *version = extension + 11; /* Move past 'GL_VERSION_' */
const char *version = extension + 11; /* Move past 'GL_VERSION_' */
if(!gl_version) {
ERR("Error no OpenGL version found,\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment