aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-09-02 13:05:03 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-09-02 13:05:03 +0000
commit208be29c246f77056c5b9971a23546b7c4531f45 (patch)
tree11b021c89afb3e15b7a8d383fcbd1db146ce83fc /src/zexy.h
parent69f127c63f477f800e2a2d4068334823f36a78a3 (diff)
fixed bug #2073844 (splashscreen problems)
svn path=/trunk/externals/zexy/; revision=10273
Diffstat (limited to 'src/zexy.h')
-rw-r--r--src/zexy.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/zexy.h b/src/zexy.h
index de15c67..a0f03a4 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -60,7 +60,7 @@
#include <math.h>
-#define VERSION "2.2.2"
+#define VERSION "2.2.3"
/* these pragmas are only used for MSVC, not MinGW or Cygwin */
#ifdef _MSC_VER
@@ -70,8 +70,12 @@
# pragma warning( disable : 4996) /* deprecated functions */
#endif
+#ifndef HEARTSYMBOL
+# define HEARTSYMBOL 64
+#endif
+
+
#ifdef __WIN32__
-# define HEARTSYMBOL 3
# define STATIC_INLINE
# ifndef sqrtf
@@ -82,7 +86,6 @@
# endif /* fabsf */
#else
-# define HEARTSYMBOL 169
# define STATIC_INLINE static
#endif
@@ -109,7 +112,7 @@ typedef struct _mypdlist
static void zexy_register(char*object){
if(object!=0){
post("[%s] part of zexy-%s (compiled: "__DATE__")", object, VERSION);
- post("\tCopyright (l) 1999-2007 IOhannes m zmölnig, forum::für::umläute & IEM");
+ post("\tCopyright (l) 1999-2008 IOhannes m zmölnig, forum::für::umläute & IEM");
}
}
#else