diff options
| author | Ray <[email protected]> | 2018-04-08 22:46:44 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-04-08 22:46:44 +0200 |
| commit | cd616258c6875d422cf20899f0daf89ba1d8e84a (patch) | |
| tree | 7eef095832704c4bce4f69bbe378d10409f92472 /src/core.c | |
| parent | 9e7dedf5af6ea3f70196e86865b8a7e676b419b2 (diff) | |
| parent | 1dbce352479f64748879fecb9df646654cd92229 (diff) | |
| download | raylib-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.c | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -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" |
