From a1d453e46fc33376c2d0420e632ccfba66f47ced 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 | 4 ++-- 1 file 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.