diff options
-rw-r--r-- | include/pugl/pugl.h | 2 | ||||
-rw-r--r-- | src/x11.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/pugl/pugl.h b/include/pugl/pugl.h index 67b1e60..62284e6 100644 --- a/include/pugl/pugl.h +++ b/include/pugl/pugl.h @@ -1273,7 +1273,7 @@ typedef enum { } PuglCursor; /// The number of #PuglCursor values -#define PUGL_NUM_CURSORS ((unsigned)PUGL_CURSOR_UP_DOWN + 1U) +#define PUGL_NUM_CURSORS ((unsigned)PUGL_CURSOR_UP_RIGHT_DOWN_LEFT + 1U) /** Grab the keyboard input focus. @@ -66,10 +66,8 @@ enum WmClientStateMessageAction { WM_STATE_TOGGLE }; -#define NUM_CURSORS ((unsigned)PUGL_CURSOR_UP_RIGHT_DOWN_LEFT + 1U) - #ifdef HAVE_XCURSOR -static const char* const cursor_names[NUM_CURSORS] = { +static const char* const cursor_names[PUGL_NUM_CURSORS] = { "default", // ARROW "text", // CARET "crosshair", // CROSSHAIR |