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 /include/gmisc | |
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 'include/gmisc')
-rw-r--r-- | include/gmisc/options.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/gmisc/options.h b/include/gmisc/options.h index 9c309487..06f689ec 100644 --- a/include/gmisc/options.h +++ b/include/gmisc/options.h @@ -53,15 +53,15 @@ * the same endianness. Unfortunately there are some strange
* processors that don't eg. some very early ARM devices.
* For those where the endianness doesn't match you can fix it by
- * defining GDISP_INVSQRT_MIXED_ENDIAN.
+ * defining GMISC_INVSQRT_MIXED_ENDIAN.
* @note This still assumes the processor is using an ieee floating point format.
*
* If you have a software floating point that uses a non-standard
* floating point format (or very strange hardware) then define
- * GDISP_INVSQRT_REAL_SLOW and it will do it the hard way.
+ * GMISC_INVSQRT_REAL_SLOW and it will do it the hard way.
*/
- #ifndef GDISP_INVSQRT_MIXED_ENDIAN
- #define GDISP_INVSQRT_MIXED_ENDIAN FALSE
+ #ifndef GMISC_INVSQRT_MIXED_ENDIAN
+ #define GMISC_INVSQRT_MIXED_ENDIAN FALSE
#endif
/**
* @brief Modifies the @p invsqrt() function to do things the long slow way.
@@ -69,8 +69,8 @@ * processor floating point format.
* @note This makes the @p invsqrt() function very slow.
*/
- #ifndef GDISP_INVSQRT_REAL_SLOW
- #define GDISP_INVSQRT_REAL_SLOW FALSE
+ #ifndef GMISC_INVSQRT_REAL_SLOW
+ #define GMISC_INVSQRT_REAL_SLOW FALSE
#endif
/** @} */
|