aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-28 00:09:34 +0100
committerJoel Bodenmann <joel@unormal.org>2013-10-28 00:09:34 +0100
commit446f0b5e8e44184e3f27765aff7c7b8190019e2c (patch)
treec963abd53fa69d5d5dceabbe138c36c775dd1003
parent1130f93af7f44051d19c2d35f6a0f30d59df42da (diff)
downloaduGFX-446f0b5e8e44184e3f27765aff7c7b8190019e2c.tar.gz
uGFX-446f0b5e8e44184e3f27765aff7c7b8190019e2c.tar.bz2
uGFX-446f0b5e8e44184e3f27765aff7c7b8190019e2c.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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gdisp/options.h b/include/gdisp/options.h
index 87a0276b..efabe417 100644
--- a/include/gdisp/options.h
+++ b/include/gdisp/options.h
@@ -50,10 +50,10 @@
#endif
/**
* @brief Are text functions needed.
- * @details Defaults to TRUE
+ * @details Defaults to FALSE
*/
#ifndef GDISP_NEED_TEXT
- #define GDISP_NEED_TEXT TRUE
+ #define GDISP_NEED_TEXT FALSE
#endif
/**
* @brief Are circle functions needed.
@@ -64,10 +64,10 @@
#endif
/**
* @brief Are ellipse functions needed.
- * @details Defaults to TRUE
+ * @details Defaults to FALSE
*/
#ifndef GDISP_NEED_ELLIPSE
- #define GDISP_NEED_ELLIPSE TRUE
+ #define GDISP_NEED_ELLIPSE FALSE
#endif
/**
* @brief Are arc functions needed.