From c0de701066c25c79e2e5bd798575886ca2e6b7e0 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 11 Nov 2012 16:19:50 +0100 Subject: [PATCH] GDISP_NEED_TEXT getting set automatically if GWIN_NEED_CONSOLE or GWIN_NEED_BUTTON set to TRUE --- include/gwin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gwin.h b/include/gwin.h index b1c644a6..6b33a5ff 100644 --- a/include/gwin.h +++ b/include/gwin.h @@ -76,11 +76,11 @@ #endif #if GWIN_NEED_CONSOLE && !GDISP_NEED_TEXT - #error "GWIN: Text support (GDISP_NEED_TEXT) is required if GWIN_NEED_CONSOLE is defined." + #define GDISP_NEED_TEXT TRUE #endif #if GWIN_NEED_BUTTON && !GDISP_NEED_TEXT - #error "GWIN: Text support (GDISP_NEED_TEXT) is required if GWIN_NEED_BUTTON is defined." + #define GDISP_NEED_TEXT TRUE #endif #if GWIN_NEED_BUTTON