aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/zexy.c1
-rw-r--r--src/zexy.h11
2 files changed, 8 insertions, 4 deletions
diff --git a/src/zexy.c b/src/zexy.c
index 135e5e8..c3e95fc 100644
--- a/src/zexy.c
+++ b/src/zexy.c
@@ -142,6 +142,7 @@ void zexy_setup(void)
endpost();
post("\t%c the zexy external "VERSION" %c", HEARTSYMBOL, HEARTSYMBOL);
post("\t%c (l) forum::für::umläute %c", HEARTSYMBOL, HEARTSYMBOL);
+ post("\t%c iem @ kug %c", HEARTSYMBOL, HEARTSYMBOL);
post("\t%c compiled: "__DATE__" %c", HEARTSYMBOL, HEARTSYMBOL);
post("\t%c send me a 'help' message %c", HEARTSYMBOL, HEARTSYMBOL);
startpost("\t");
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