x11: fix check for config values in egl impl

This commit is contained in:
Denis Oliver Kropp
2014-01-20 20:04:07 +01:00
parent 429bf34ef5
commit 74a63b3299

View File

@@ -526,7 +526,7 @@ X11EGLConfig::CheckOptions( const Graphics::Options &options )
}
}
else {
if (val > check && check != 0)
if (val > check)// && check != 0)
D_DEBUG_AT( DFBX11_EGLConfig, " > local '%ld' greater than '%ld'\n", val, check );
else if (val == check)
D_DEBUG_AT( DFBX11_EGLConfig, " = local '%ld' equals\n", val );