Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #469 from Sonicadvance1/GLES-version-detect-fix
Fix OpenGL ES version detection.
  • Loading branch information
Sonicadvance1 committed Jun 7, 2014
2 parents b6db0d0 + d2e4c2f commit 28c8802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/Render.cpp
Expand Up @@ -463,7 +463,7 @@ Renderer::Renderer()

if (GLInterface->GetMode() == GLInterfaceMode::MODE_OPENGLES3)
{
if (strstr(g_ogl_config.glsl_version, "3.00"))
if (strstr(g_ogl_config.glsl_version, "3.0"))
{
g_ogl_config.eSupportedGLSLVersion = GLSLES_300;
}
Expand Down

0 comments on commit 28c8802

Please sign in to comment.