diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/d_main.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/d_main.c b/src/d_main.c index af3f4c17..170efa92 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: d_main.c 176 2005-10-08 21:01:55Z fraggle $ +// $Id: d_main.c 178 2005-10-09 00:20:24Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.23 2005/10/09 00:20:24 fraggle +// Detect registered DOOM banner in dehacked patches +// // Revision 1.22 2005/10/08 21:01:55 fraggle // Change dehacked startup message // @@ -109,7 +112,7 @@ //----------------------------------------------------------------------------- -static const char rcsid[] = "$Id: d_main.c 176 2005-10-08 21:01:55Z fraggle $"; +static const char rcsid[] = "$Id: d_main.c 178 2005-10-09 00:20:24Z fraggle $"; #define BGCOLOR 7 #define FGCOLOR 8 @@ -768,6 +771,9 @@ static void FindIWAD (void) } // Strings for dehacked replacements of the startup banner +// +// These are from the original source: some of them are perhaps +// not used in any dehacked patches static char *banners[] = { @@ -779,6 +785,10 @@ static char *banners[] = " " "DOOM Registered Startup v%i.%i" " ", + // Registered DOOM uses this + " " + "DOOM System Startup v%i.%i" + " ", // doom.wad (Ultimate DOOM) " " "The Ultimate DOOM Startup v%i.%i" |