From 446f0b5e8e44184e3f27765aff7c7b8190019e2c Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 28 Oct 2013 00:09:34 +0100 Subject: [PATCH] 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 --- include/gdisp/options.h | 8 ++++---- 1 file 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.