From bb3b3452f36eb43efce999d751a4d2e8b94a6fcf Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 22 Feb 2016 12:29:52 +0100 Subject: [PATCH] Cleanup --- 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 4e8eb696..e4e13729 100644 --- a/src/x11_init.c +++ b/src/x11_init.c @@ -620,7 +620,7 @@ static GLFWbool initExtensions(void) // Create a blank cursor for hidden and disabled cursor modes // -static Cursor createNULLCursor(void) +static Cursor createHiddenCursor(void) { unsigned char pixels[16 * 16 * 4]; GLFWimage image = { 16, 16, pixels }; @@ -743,7 +743,7 @@ int _glfwPlatformInit(void) if (!initExtensions()) return GLFW_FALSE; - _glfw.x11.cursor = createNULLCursor(); + _glfw.x11.cursor = createHiddenCursor(); if (XSupportsLocale()) {