diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-12-19 09:36:00 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-12-19 09:36:00 +0000 |
commit | 2c7fd68913b585066e3140631162caa8231000d9 (patch) | |
tree | bb90649b102bbe23afd0fc03c28525252ec8e0a8 /src/zexy.h | |
parent | af8b334c147ee752c34f29f00280884a0a7fbf9c (diff) |
fixing unicode characters
now that Pd iuses UTF8, we can finally have hearts...
svn path=/trunk/externals/zexy/; revision=16706
Diffstat (limited to 'src/zexy.h')
-rw-r--r-- | src/zexy.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -70,7 +70,11 @@ #endif #ifndef HEARTSYMBOL -# define HEARTSYMBOL 64 +# if (defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION >= 43) +# define HEARTSYMBOL "♡" +# else +# define HEARTSYMBOL "@" +# endif #endif #include <math.h> |