mirror of
https://github.com/DirectFB/directfb.git
synced 2025-10-14 02:48:16 +08:00
x11: fix check for config values in egl impl
This commit is contained in:
@@ -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 );
|
||||
|
Reference in New Issue
Block a user