Browse Source

wayland: Default to 32 cursor image size

This is the default across various toolkits (weston, GTK+ for example)
so lets stick to that.
Jonas Ådahl 11 years ago
parent
commit
b1033a3443
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/wl_init.c

+ 1 - 1
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;