From b0258803c6d6e8b03f194a73457a1e0645196f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Mon, 16 Jan 2017 18:01:29 +0100 Subject: [PATCH] X11: Clarified broken RandR error messages --- src/x11_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11_init.c b/src/x11_init.c index e8421fd9..02918f87 100644 --- a/src/x11_init.c +++ b/src/x11_init.c @@ -509,7 +509,7 @@ static GLFWbool initExtensions(void) // Flag it as useless and fall back to Xf86VidMode gamma, if // available _glfwInputError(GLFW_PLATFORM_ERROR, - "X11: RandR gamma ramp support seems broken"); + "X11: Detected broken RandR gamma ramp support"); _glfw.x11.randr.gammaBroken = GLFW_TRUE; } @@ -518,7 +518,7 @@ static GLFWbool initExtensions(void) // This is either a headless system or broken Cygwin/X RandR // Flag it as useless and fall back to Xlib display functions _glfwInputError(GLFW_PLATFORM_ERROR, - "X11: RandR monitor support seems broken"); + "X11: Detected broken RandR monitor support"); _glfw.x11.randr.monitorBroken = GLFW_TRUE; }