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:
bmitc 2022-12-28 04:22:38 -05:00 committed by GitHub
parent 57cbded076
commit 3d040dacde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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