summaryrefslogtreecommitdiff
path: root/src/dstrings.h
diff options
context:
space:
mode:
authorSimon Howard2005-09-04 14:51:19 +0000
committerSimon Howard2005-09-04 14:51:19 +0000
commit4fcb2575e748bdff1f219da8051844c31254f19a (patch)
tree7f6ce89922b01924e7745bf250dc1138612acf75 /src/dstrings.h
parent2e941b777d32cdfc5d023f5e127da580edabadc3 (diff)
downloadchocolate-doom-4fcb2575e748bdff1f219da8051844c31254f19a.tar.gz
chocolate-doom-4fcb2575e748bdff1f219da8051844c31254f19a.tar.bz2
chocolate-doom-4fcb2575e748bdff1f219da8051844c31254f19a.zip
Display the correct quit messages according to which game is being played.
Remove "language" variable (do this through gettext, if ever) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 66
Diffstat (limited to 'src/dstrings.h')
-rw-r--r--src/dstrings.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/dstrings.h b/src/dstrings.h
index b12f392e..2cc1fcfd 100644
--- a/src/dstrings.h
+++ b/src/dstrings.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: dstrings.h 18 2005-07-23 18:56:07Z fraggle $
+// $Id: dstrings.h 66 2005-09-04 14:51:19Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -23,6 +23,10 @@
//
//
// $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
//
@@ -69,15 +73,21 @@
// Not done in french?
// QuitDOOM messages
-#define NUM_QUITMESSAGES 15
+// 7 per each game type
+#define NUM_QUITMESSAGES 7
-extern char* endmsg[];
+extern char *doom1_endmsg[];
+extern char *doom2_endmsg[];
#endif
//-----------------------------------------------------------------------------
//
// $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
//