summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-06-19 19:54:36 +0200
committerraysan5 <[email protected]>2021-06-19 19:54:36 +0200
commit28093c46a8d264206936d2eb534c56173346020b (patch)
tree89020fb3a6f0fb0701bfb5750c89cfd5f5d5a032
parentc37f776e87ff948ec81011a7707ad0fd59b3a0f0 (diff)
downloadraylib-28093c46a8d264206936d2eb534c56173346020b.tar.gz
raylib-28093c46a8d264206936d2eb534c56173346020b.zip
Disable `SUPPORT_EVENTS_AUTOMATION` by default
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index b90b81b3..3ca16032 100644
--- a/src/config.h
+++ b/src/config.h
@@ -56,7 +56,7 @@
// Support saving binary data automatically to a generated storage.data file. This file is managed internally.
#define SUPPORT_DATA_STORAGE 1
// Support automatic generated events, loading and recording of those events when required
-#define SUPPORT_EVENTS_AUTOMATION 1
+//#define SUPPORT_EVENTS_AUTOMATION 1
// Support custom frame control, only for advance users
// By default EndDrawing() does this job: draws everything + SwapScreenBuffer() + manage frame timming + PollInputEvents()
// Enabling this flag allows manual control of the frame processes, use at your own risk