diff options
author | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-12 17:00:26 +1000 |
---|---|---|
committer | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-12 17:00:26 +1000 |
commit | 014330d3a08104313feee8ce3dfed02fb79bf2d3 (patch) | |
tree | 081e6f6b052b46f4bb680097ebd04e857df6c2a7 /include | |
parent | 27f1350081ecbcf00618a88c5590be27df275b95 (diff) | |
download | uGFX-014330d3a08104313feee8ce3dfed02fb79bf2d3.tar.gz uGFX-014330d3a08104313feee8ce3dfed02fb79bf2d3.tar.bz2 uGFX-014330d3a08104313feee8ce3dfed02fb79bf2d3.zip |
gdisp Win32 Orientation support. Revert Macro
gdisp Win32 orientation support.
Revert to producing an error if GDISP_NEED_TEXT is not defined when
GWIN_NEED_CONSOLE or GWIN_NEED_BUTTON is defined.
Diffstat (limited to 'include')
-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 6b33a5ff..b1c644a6 100644 --- a/include/gwin.h +++ b/include/gwin.h @@ -76,11 +76,11 @@ #endif
#if GWIN_NEED_CONSOLE && !GDISP_NEED_TEXT
- #define GDISP_NEED_TEXT TRUE
+ #error "GWIN: Text support (GDISP_NEED_TEXT) is required if GWIN_NEED_CONSOLE is defined."
#endif
#if GWIN_NEED_BUTTON && !GDISP_NEED_TEXT
- #define GDISP_NEED_TEXT TRUE
+ #error "GWIN: Text support (GDISP_NEED_TEXT) is required if GWIN_NEED_BUTTON is defined."
#endif
#if GWIN_NEED_BUTTON
|