aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-02 16:21:22 -0500
committerDavid Robillard <d@drobilla.net>2023-01-02 16:21:41 -0500
commite1eaf1583025ed182b9a7226f3eb17e08e81bd34 (patch)
tree5ca60cbee4cc00d1c5b1bdfb6d4c3cbf48b30266 /src
parenta94b055296f06cfaf3dcbf7e9125087dbaab73fd (diff)
downloadpugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.tar.gz
pugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.tar.bz2
pugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.zip
Fix PUGL_NUM_CURSORS
Diffstat (limited to 'src')
-rw-r--r--src/x11.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/x11.c b/src/x11.c
index 78cd48e..2bdfc4a 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -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