From 2e03ed626d6d58ea638dd481876671c572d76279 Mon Sep 17 00:00:00 2001 From: Katja Date: Mon, 7 Nov 2011 11:10:46 +0000 Subject: repaired mistake in previous commit for creb svn path=/trunk/externals/creb/; revision=15709 --- modules++/DSPI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules++/DSPI.h') diff --git a/modules++/DSPI.h b/modules++/DSPI.h index 283e848..640060f 100644 --- a/modules++/DSPI.h +++ b/modules++/DSPI.h @@ -25,7 +25,7 @@ static inline int DSPI_IS_DENORMAL(t_float f) { t_dspiflint pun; pun.f = f; - return ((pun.i[1] & 0x7f800000) == 0); + return ((pun.i & 0x7f800000) == 0); } // test if almost denormal, choose whichever is fastest @@ -33,7 +33,7 @@ static inline int DSPI_IS_ALMOST_DENORMAL(t_float f) { t_dspiflint pun; pun.f = f; - return ((pun.i[1] & 0x7f800000) < 0x08000000); + return ((pun.i & 0x7f800000) < 0x08000000); } #elif PD_FLOAT_PRECISION == 64 -- cgit v1.2.1