commit 78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Jan 5 23:39:39 2007 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Jan 5 23:39:39 2007 +0000
Add quit prompt message missing in the Doom source release.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 818
---
src/dstrings.c | 2 ++
src/dstrings.h | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/dstrings.c b/src/dstrings.c
index 4cbc84ec..e7709bba 100644
--- a/src/dstrings.c
+++ b/src/dstrings.c
@@ -30,6 +30,7 @@
char *doom1_endmsg[] =
{
+ "are you sure you want to\nquit this great game?",
"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.",
@@ -42,6 +43,7 @@ char *doom1_endmsg[] =
char *doom2_endmsg[] =
{
// QuitDOOM II messages
+ "are you sure you want to\nquit this great game?",
"you want to quit?\nthen, thou hast lost an eighth!",
"don't go now, there's a \ndimensional shambler waiting \nat the dos prompt!",
"get outta here and go back\nto your boring programs.",
diff --git a/src/dstrings.h b/src/dstrings.h
index 7cddd357..bdc6b2ce 100644
--- a/src/dstrings.h
+++ b/src/dstrings.h
@@ -48,8 +48,8 @@
// QuitDOOM messages
-// 7 per each game type
-#define NUM_QUITMESSAGES 7
+// 8 per each game type
+#define NUM_QUITMESSAGES 8
extern char *doom1_endmsg[];
extern char *doom2_endmsg[];