summaryrefslogtreecommitdiffhomepage
path: root/src/text.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/text.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/text.c')
-rw-r--r--src/text.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/text.c b/src/text.c
index d053be30..1a9d386a 100644
--- a/src/text.c
+++ b/src/text.c
@@ -6,7 +6,7 @@
*
* #define SUPPORT_FILEFORMAT_FNT
* #define SUPPORT_FILEFORMAT_TTF
-* Selected desired fileformats to be supported for loading. Some of those formats are
+* Selected desired fileformats to be supported for loading. Some of those formats are
* supported by default, to remove support, just comment unrequired #define in this module
*
* #define SUPPORT_DEFAULT_FONT
@@ -36,12 +36,7 @@
*
**********************************************************************************************/
-// Default supported features
-//-------------------------------------
-#define SUPPORT_DEFAULT_FONT
-#define SUPPORT_FILEFORMAT_FNT
-#define SUPPORT_FILEFORMAT_TTF
-//-------------------------------------
+#include "config.h"
#include "raylib.h"