diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-11 16:19:50 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-11 16:19:50 +0100 |
commit | c0de701066c25c79e2e5bd798575886ca2e6b7e0 (patch) | |
tree | 1a09058ec4ddb5b6d91e9b59e6544ae24c0ab4bb | |
parent | 112781baee6c1a3c7520e710eb609d0234c89edf (diff) | |
download | uGFX-c0de701066c25c79e2e5bd798575886ca2e6b7e0.tar.gz uGFX-c0de701066c25c79e2e5bd798575886ca2e6b7e0.tar.bz2 uGFX-c0de701066c25c79e2e5bd798575886ca2e6b7e0.zip |
GDISP_NEED_TEXT getting set automatically if GWIN_NEED_CONSOLE or GWIN_NEED_BUTTON set to TRUE
-rw-r--r-- | include/gwin.h | 4 |
1 files 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
|