aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mf_font.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-09-06 12:23:48 +1000
committerinmarket <andrewh@inmarket.com.au>2013-09-06 12:23:48 +1000
commit439426667990b90f76f759ae8f993215c16770cd (patch)
tree518654e216ba6d28934ce5b6532fc02b7fd450c2 /src/gdisp/mcufont/mf_font.c
parentb53ab7adf4f04ad1da30c3a7fd7e9fecd0404d83 (diff)
downloaduGFX-439426667990b90f76f759ae8f993215c16770cd.tar.gz
uGFX-439426667990b90f76f759ae8f993215c16770cd.tar.bz2
uGFX-439426667990b90f76f759ae8f993215c16770cd.zip
Update fonts files to allow compiling without GDISP_NEED_TEXT.
Diffstat (limited to 'src/gdisp/mcufont/mf_font.c')
-rw-r--r--src/gdisp/mcufont/mf_font.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gdisp/mcufont/mf_font.c b/src/gdisp/mcufont/mf_font.c
index 60350d99..7a4ebf95 100644
--- a/src/gdisp/mcufont/mf_font.c
+++ b/src/gdisp/mcufont/mf_font.c
@@ -6,6 +6,9 @@
*/
#include "mf_font.h"
+
+#ifndef MF_NO_COMPILE
+
#include <stdbool.h>
/* This will be made into a list of included fonts using macro magic. */
@@ -82,3 +85,5 @@ const struct mf_font_list_s *mf_get_font_list()
return MF_INCLUDED_FONTS;
}
+#endif //MF_NO_COMPILE
+