diff options
Diffstat (limited to 'src/dstrings.c')
-rw-r--r-- | src/dstrings.c | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/src/dstrings.c b/src/dstrings.c index 729be1cb..653ae4d7 100644 --- a/src/dstrings.c +++ b/src/dstrings.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: dstrings.c 18 2005-07-23 18:56:07Z fraggle $ +// $Id: dstrings.c 66 2005-09-04 14:51:19Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,10 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.4 2005/09/04 14:51:19 fraggle +// Display the correct quit messages according to which game is being played. +// Remove "language" variable (do this through gettext, if ever) +// // Revision 1.3 2005/07/23 18:56:07 fraggle // Remove unneccessary pragmas // @@ -38,17 +42,13 @@ //----------------------------------------------------------------------------- static const char -rcsid[] = "$Id: dstrings.c 18 2005-07-23 18:56:07Z fraggle $"; +rcsid[] = "$Id: dstrings.c 66 2005-09-04 14:51:19Z fraggle $"; #include "dstrings.h" - - -char* endmsg[] = +char *doom1_endmsg[] = { - // DOOM1 - QUITMSG, "please don't leave, there's more\ndemons to toast!", "let's beat it -- this is turning\ninto a bloodbath!", "i wouldn't leave if i were you. \ndos is much worse.", @@ -56,7 +56,10 @@ char* endmsg[] = "don't leave yet -- there's a\ndemon around that corner!", "ya know, next time you come in here\ni'm gonna toast ya.", "go ahead and leave. see if i care.", +}; +char *doom2_endmsg[] = +{ // QuitDOOM II messages "you want to quit?\nthen, thou hast lost an eighth!", "don't go now, there's a \ndimensional shambler waiting \nat the dos prompt!", @@ -65,7 +68,16 @@ char* endmsg[] = "look, bud. you leave now\nand you forfeit your body count!", "just leave. when you come\nback, i'll be waiting with a bat.", "you're lucky i don't smack\nyou for thinking about leaving.", +}; + +#if 0 +// UNUSED messages included in the source release + +char* endmsg[] = +{ + // DOOM1 + QUITMSG, // FinalDOOM? "fuck you, pussy!\nget the fuck out!", "you quit and i'll jizz\nin your cystholes!", @@ -79,6 +91,7 @@ char* endmsg[] = "THIS IS NO MESSAGE!\nPage intentionally left blank." }; +#endif |