diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-09-02 13:05:03 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-09-02 13:05:03 +0000 |
commit | 208be29c246f77056c5b9971a23546b7c4531f45 (patch) | |
tree | 11b021c89afb3e15b7a8d383fcbd1db146ce83fc /src | |
parent | 69f127c63f477f800e2a2d4068334823f36a78a3 (diff) |
fixed bug #2073844 (splashscreen problems)
svn path=/trunk/externals/zexy/; revision=10273
Diffstat (limited to 'src')
-rw-r--r-- | src/zexy.c | 1 | ||||
-rw-r--r-- | src/zexy.h | 11 |
2 files changed, 8 insertions, 4 deletions
@@ -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"); @@ -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 |