diff options
author | David Robillard <d@drobilla.net> | 2023-01-02 16:21:22 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-02 16:21:41 -0500 |
commit | e1eaf1583025ed182b9a7226f3eb17e08e81bd34 (patch) | |
tree | 5ca60cbee4cc00d1c5b1bdfb6d4c3cbf48b30266 /include | |
parent | a94b055296f06cfaf3dcbf7e9125087dbaab73fd (diff) | |
download | pugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.tar.gz pugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.tar.bz2 pugl-e1eaf1583025ed182b9a7226f3eb17e08e81bd34.zip |
Fix PUGL_NUM_CURSORS
Diffstat (limited to 'include')
-rw-r--r-- | include/pugl/pugl.h | 2 |
1 files changed, 1 insertions, 1 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. |