summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2018-04-08 22:46:44 +0200
committerGitHub <[email protected]>2018-04-08 22:46:44 +0200
commitcd616258c6875d422cf20899f0daf89ba1d8e84a (patch)
tree7eef095832704c4bce4f69bbe378d10409f92472 /src/core.c
parent9e7dedf5af6ea3f70196e86865b8a7e676b419b2 (diff)
parent1dbce352479f64748879fecb9df646654cd92229 (diff)
downloadraylib-cd616258c6875d422cf20899f0daf89ba1d8e84a.tar.gz
raylib-cd616258c6875d422cf20899f0daf89ba1d8e84a.zip
Merge pull request #522 from a3f/master
Refactor all #define SUPPORT_* into a config.h
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/core.c b/src/core.c
index e10494c1..0265afd0 100644
--- a/src/core.c
+++ b/src/core.c
@@ -48,7 +48,7 @@
* Mouse gestures are directly mapped like touches and processed by gestures system.
*
* #define SUPPORT_BUSY_WAIT_LOOP
-* Use busy wait loop for timming sync, if not defined, a high-resolution timer is setup and used
+* Use busy wait loop for timing sync, if not defined, a high-resolution timer is setup and used
*
* #define SUPPORT_GIF_RECORDING
* Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback()
@@ -81,15 +81,7 @@
*
**********************************************************************************************/
-// Default configuration flags (supported features)
-//-------------------------------------------------
-#define SUPPORT_DEFAULT_FONT
-#define SUPPORT_MOUSE_GESTURES
-#define SUPPORT_CAMERA_SYSTEM
-#define SUPPORT_GESTURES_SYSTEM
-#define SUPPORT_BUSY_WAIT_LOOP
-#define SUPPORT_GIF_RECORDING
-//-------------------------------------------------
+#include "config.h"
#include "raylib.h"