From 84875d47df8258f36ece10948a2e947b64b37be7 Mon Sep 17 00:00:00 2001
From: pranaygupta36 <pranayguptastudent@gmail.com>
Date: Sat, 12 May 2018 08:08:48 +0530
Subject: [PATCH] FLOAT_PRECISION changed to FLOATSIZE to match with pd-vanilla

---
 pd/src/m_pd.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/pd/src/m_pd.h b/pd/src/m_pd.h
index 4a9a78026..be41e2173 100644
--- a/pd/src/m_pd.h
+++ b/pd/src/m_pd.h
@@ -90,13 +90,13 @@ typedef unsigned __int64  uint64_t;
 #define PD_LONGINTTYPE long
 #endif
 
-#if !defined(PD_FLOAT_PRECISION)
-#define PD_FLOAT_PRECISION 32   /* 32 for single precision or 64 for double precision */
+#if !defined(PD_FLOATSIZE)
+#define PD_FLOATSIZE 32   /* 32 for single precision or 64 for double precision */
 #endif
 
-#if PD_FLOAT_PRECISION == 32
+#if PD_FLOATSIZE == 32
 #define PD_FLOATTYPE float
-#elif PD_FLOAT_PRECISION == 64
+#elif PD_FLOATSIZE == 64
 #define PD_FLOATTYPE double
 #else
 #error invalid PD_FLOATPRECISION: must be 32 or 64
@@ -767,7 +767,7 @@ defined, there is a "te_xpix" field in objects, not a "te_xpos" as before: */
 
 #if defined(__i386__) || defined(__x86_64__) // Type punning code:
 
-#if PD_FLOAT_PRECISION == 32
+#if PD_FLOATSIZE == 32
 
 typedef  union
 {
@@ -790,7 +790,7 @@ static inline int PD_BIGORSMALL(t_float f)  // > abs(2^64) or < abs(2^-64)
     return((pun.ui & 0x20000000) == ((pun.ui >> 1) & 0x20000000));
 }
     
-#elif PD_FLOAT_PRECISION == 64
+#elif PD_FLOATSIZE == 64
 
 typedef  union
 {
@@ -813,7 +813,7 @@ static inline int PD_BIGORSMALL(t_float f)  // > abs(2^512) or < abs(2^-512)
     return((pun.ui[1] & 0x20000000) == ((pun.ui[1] >> 1) & 0x20000000));
 }
 
-#endif // endif PD_FLOAT_PRECISION
+#endif // endif PD_FLOATSIZE
 #else   // if not defined(__i386__) || defined(__x86_64__)
 #define PD_BADFLOAT(f) 0
 #define PD_BIGORSMALL(f) 0
-- 
GitLab