diff options
author | falkTX <falktx@falktx.com> | 2022-05-27 00:30:12 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-24 19:47:25 -0500 |
commit | cdfb8223301faba2c478c805b35ca457e6547629 (patch) | |
tree | f024df90192e74ff11f1e9eeb766825758f9f691 /examples/pugl_cursor_demo.c | |
parent | ebf23245ce3dff82d804c957ad928fe11457311f (diff) | |
download | pugl-cdfb8223301faba2c478c805b35ca457e6547629.tar.gz pugl-cdfb8223301faba2c478c805b35ca457e6547629.tar.bz2 pugl-cdfb8223301faba2c478c805b35ca457e6547629.zip |
Add diagonal cursors
Diffstat (limited to 'examples/pugl_cursor_demo.c')
-rw-r--r-- | examples/pugl_cursor_demo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pugl_cursor_demo.c b/examples/pugl_cursor_demo.c index c9839da..ccece41 100644 --- a/examples/pugl_cursor_demo.c +++ b/examples/pugl_cursor_demo.c @@ -8,9 +8,9 @@ #include <stdbool.h> -static const int N_CURSORS = 7; +static const int N_CURSORS = 9; static const int N_ROWS = 2; -static const int N_COLS = 4; +static const int N_COLS = 5; typedef struct { PuglWorld* world; |