mirror of
https://github.com/glfw/glfw.git
synced 2025-04-04 16:02:02 +00:00
Update logic for X11 RandR version check
Changed major to be greater than or equal to 1, rather than just greater than, and switched from OR to AND operator.
This commit is contained in:
parent
57cbded076
commit
3d040dacde
@ -715,7 +715,7 @@ static GLFWbool initExtensions(void)
|
||||
&_glfw.x11.randr.minor))
|
||||
{
|
||||
// The GLFW RandR path requires at least version 1.3
|
||||
if (_glfw.x11.randr.major > 1 || _glfw.x11.randr.minor >= 3)
|
||||
if (_glfw.x11.randr.major >= 1 && _glfw.x11.randr.minor >= 3)
|
||||
_glfw.x11.randr.available = GLFW_TRUE;
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user