rnd-20020803-1-src
[rocksndiamonds.git] / src / config.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * config.c                                                 *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15
16 #include "config.h"
17 #include "conftime.h"
18
19 /* use timestamp created at compile-time */
20 #define PROGRAM_BUILD_STRING    PROGRAM_IDENT_STRING " " COMPILE_DATE_STRING
21 #ifdef DEBUG
22 #undef WINDOW_TITLE_STRING
23 #define WINDOW_TITLE_STRING     PROGRAM_TITLE_STRING " " PROGRAM_BUILD_STRING
24 #endif
25
26
27 char *getWindowTitleString()
28 {
29   return WINDOW_TITLE_STRING;
30 }