summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2019-08-20 20:39:22 +0200
committerraysan5 <[email protected]>2019-08-20 20:39:22 +0200
commit3db13edd898adcd41aa0768e2e707256687a90ac (patch)
tree015167ad5343fe96200693a8dee10dd134181100 /src/config.h
parenta727f5768f6e588d45e47dd26da9af82597ba1d3 (diff)
downloadraylib-3db13edd898adcd41aa0768e2e707256687a90ac.tar.gz
raylib-3db13edd898adcd41aa0768e2e707256687a90ac.zip
Support mouse cursor on RPI native
Reduced bunnymark limits
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 050cce18..398b5e9a 100644
--- a/src/config.h
+++ b/src/config.h
@@ -44,6 +44,8 @@
#define SUPPORT_MOUSE_GESTURES 1
// Reconfigure standard input to receive key inputs, works with SSH connection.
#define SUPPORT_SSH_KEYBOARD_RPI 1
+// Draw a mouse reference on screen (square cursor box)
+#define SUPPORT_MOUSE_CURSOR_RPI 1
// Use busy wait loop for timing sync, if not defined, a high-resolution timer is setup and used
//#define SUPPORT_BUSY_WAIT_LOOP 1
// Wait for events passively (sleeping while no events) instead of polling them actively every frame