diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-11 16:02:44 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-11 16:02:44 +0100 |
commit | 112781baee6c1a3c7520e710eb609d0234c89edf (patch) | |
tree | 742b2f9a8ca500ab12972ce4d86e2bcbc65a0ac4 /include/gwin.h | |
parent | e8020a88c96c1781c60c5506bb820f35d7aba6ec (diff) | |
download | uGFX-112781baee6c1a3c7520e710eb609d0234c89edf.tar.gz uGFX-112781baee6c1a3c7520e710eb609d0234c89edf.tar.bz2 uGFX-112781baee6c1a3c7520e710eb609d0234c89edf.zip |
set GWIN_NEED_CONSOLE default value to FALSE
Diffstat (limited to 'include/gwin.h')
-rw-r--r-- | include/gwin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gwin.h b/include/gwin.h index 37fecab4..b1c644a6 100644 --- a/include/gwin.h +++ b/include/gwin.h @@ -47,14 +47,14 @@ */
/**
* @brief Should console functions be included.
- * @details Defaults to TRUE
+ * @details Defaults to FALSE
*/
#ifndef GWIN_NEED_CONSOLE
- #define GWIN_NEED_CONSOLE TRUE
+ #define GWIN_NEED_CONSOLE FALSE
#endif
/**
* @brief Should button functions be included.
- * @details Defaults to FALSE for now as implementation is not complete
+ * @details Defaults to FALSE
*/
#ifndef GWIN_NEED_BUTTON
#define GWIN_NEED_BUTTON FALSE
|