diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-11-09 19:13:01 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-11-09 19:13:01 +1000 |
commit | 53408e2cb3d0705f261e9756bcf6f3f6c90c3fe9 (patch) | |
tree | c73dd665e3889b660c326dab7c1efdd178ec3657 /demos | |
parent | 190113b91c7692d13fa72c8b515208e9a648c6d2 (diff) | |
download | uGFX-53408e2cb3d0705f261e9756bcf6f3f6c90c3fe9.tar.gz uGFX-53408e2cb3d0705f261e9756bcf6f3f6c90c3fe9.tar.bz2 uGFX-53408e2cb3d0705f261e9756bcf6f3f6c90c3fe9.zip |
Fix incorrect naming of GMISC_INVSQRT_... macros.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/modules/gdisp/streaming/gfxconf.h | 4 | ||||
-rw-r--r-- | demos/modules/gdisp/streaming/main.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/modules/gdisp/streaming/gfxconf.h b/demos/modules/gdisp/streaming/gfxconf.h index 4038a3fd..82843184 100644 --- a/demos/modules/gdisp/streaming/gfxconf.h +++ b/demos/modules/gdisp/streaming/gfxconf.h @@ -25,7 +25,7 @@ #define GFX_USE_GMISC TRUE #define GMISC_NEED_INVSQRT TRUE -//#define GDISP_INVSQRT_MIXED_ENDIAN TRUE -//#define GDISP_INVSQRT_REAL_SLOW TRUE +//#define GMISC_INVSQRT_MIXED_ENDIAN TRUE +//#define GMISC_INVSQRT_REAL_SLOW TRUE #endif /* _GFXCONF_H */ diff --git a/demos/modules/gdisp/streaming/main.c b/demos/modules/gdisp/streaming/main.c index 5b857eeb..4ad48b6c 100644 --- a/demos/modules/gdisp/streaming/main.c +++ b/demos/modules/gdisp/streaming/main.c @@ -42,11 +42,11 @@ * your processor. * * You can modify the implementation of invsqrt() by firstly defining - * #define GDISP_INVSQRT_MIXED_ENDIAN TRUE + * #define GMISC_INVSQRT_MIXED_ENDIAN TRUE * in your gfxconf.h file. * * If it still doesn't work then instead define - * #define GDISP_INVSQRT_REAL_SLOW TRUE + * #define GMISC_INVSQRT_REAL_SLOW TRUE * in your gfxconf.h file. This should always work although it will probably be slow. */ #define BALLCOLOR1 Red |