From b1033a34438b4a53d6a9150e7b70d2249a773c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Sun, 28 Sep 2014 21:51:12 +0200 Subject: [PATCH] wayland: Default to 32 cursor image size This is the default across various toolkits (weston, GTK+ for example) so lets stick to that. --- src/wl_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wl_init.c b/src/wl_init.c index 46f8179d..c0a4a69e 100644 --- a/src/wl_init.c +++ b/src/wl_init.c @@ -574,7 +574,7 @@ int _glfwPlatformInit(void) _glfwInitJoysticks(); if (_glfw.wl.pointer && _glfw.wl.shm){ - _glfw.wl.cursorTheme = wl_cursor_theme_load(NULL, 24, _glfw.wl.shm); + _glfw.wl.cursorTheme = wl_cursor_theme_load(NULL, 32, _glfw.wl.shm); if (!_glfw.wl.cursorTheme) { _glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: Unable to load default cursor theme\n"); return GL_FALSE;