summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorRay <[email protected]>2019-05-07 10:05:21 +0200
committerRay <[email protected]>2019-05-07 10:05:21 +0200
commite0e2346c2266d8f8f09a2e1e68fffd61b49afa8d (patch)
tree87ddf3f573c6c8538a40e5202ca6ae0e72313d29 /src/config.h
parentafd90a5a5655724dc56466fa0c2d42c3f702d88a (diff)
downloadraylib-e0e2346c2266d8f8f09a2e1e68fffd61b49afa8d.tar.gz
raylib-e0e2346c2266d8f8f09a2e1e68fffd61b49afa8d.zip
NO SUPPORT_BUSY_WAIT_LOOP by default
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 77e936bd..ebe1a7da 100644
--- a/src/config.h
+++ b/src/config.h
@@ -43,7 +43,7 @@
// Mouse gestures are directly mapped like touches and processed by gestures system
#define SUPPORT_MOUSE_GESTURES 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
+//#define SUPPORT_BUSY_WAIT_LOOP 1
// Wait for events passively (sleeping while no events) instead of polling them actively every frame
//#define SUPPORT_EVENTS_WAITING 1
// Allow automatic screen capture of current screen pressing F12, defined in KeyCallback()