summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2007-01-05 23:39:39 +0000
committerSimon Howard2007-01-05 23:39:39 +0000
commit78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1 (patch)
tree95c4d9e2463778a4174b76baaf83b11885553f31 /src
parentf670f6003cc4b7d2391957a6dac55f5bf3ca325e (diff)
downloadchocolate-doom-78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1.tar.gz
chocolate-doom-78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1.tar.bz2
chocolate-doom-78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1.zip
Add quit prompt message missing in the Doom source release.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 818
Diffstat (limited to 'src')
-rw-r--r--src/dstrings.c2
-rw-r--r--src/dstrings.h4
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[];