aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-03-23 13:40:45 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-03-23 13:40:45 +0000
commitf93dcbb9c2bee3a5ffd109c3d7ed79cf5c559eae (patch)
tree2f7ba8f3fda4efbff86419aa14f6dfa80dccdec9 /src/zexy.h
parent29a6887af1f519ceed8121a11d4c2b131884898e (diff)
require Pd>=0.41 (rather than Pd>0.41) for 64bit hacks
svn path=/trunk/externals/zexy/; revision=10889
Diffstat (limited to 'src/zexy.h')
-rw-r--r--src/zexy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zexy.h b/src/zexy.h
index 0ec9287..572ee23 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -140,7 +140,7 @@ static void zexy_register(char*object){object=0;}
# define z_verbose
#endif
-#if (defined __x86_64__) && (defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION > 41)
+#if (defined __x86_64__) && (defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION >= 41)
# define zarray_t t_word
# define zarray_getarray garray_getfloatwords
# define zarray_getfloat(pointer, index) (pointer[index].w_float)