aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-28 00:09:34 +0100
committerinmarket <andrewh@inmarket.com.au>2013-10-28 09:30:23 +1000
commita1d453e46fc33376c2d0420e632ccfba66f47ced (patch)
treeee62c2a863d4ad77bdfd95f085c679cd298d24fd
parent7c3b7270fc1b39bf231654b846bcaeccead4413c (diff)
downloaduGFX-a1d453e46fc33376c2d0420e632ccfba66f47ced.tar.gz
uGFX-a1d453e46fc33376c2d0420e632ccfba66f47ced.tar.bz2
uGFX-a1d453e46fc33376c2d0420e632ccfba66f47ced.zip
GDISP_NEED_TEXT and GDISP_NEED_ELLIPSE defaults to FALSE now. The former requires to enable at least one font which may not be needed (it sucks if compiling the basic examples) and the latter is barely needed anyway
-rw-r--r--include/gdisp/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gdisp/options.h b/include/gdisp/options.h
index 4b199118..7796144c 100644
--- a/include/gdisp/options.h
+++ b/include/gdisp/options.h
@@ -79,11 +79,11 @@
#endif
/**
* @brief Are text functions needed.
- * @details Defaults to TRUE
+ * @details Defaults to FALSE
* @note You must also define at least one font.
*/
#ifndef GDISP_NEED_TEXT
- #define GDISP_NEED_TEXT TRUE
+ #define GDISP_NEED_TEXT FALSE
#endif
/**
* @brief Are circle functions needed.