shithub: choc

Download patch

ref: 78a2c03136b13b219d2fd081ac8f3ad2b3e1cef1
parent: f670f6003cc4b7d2391957a6dac55f5bf3ca325e
author: Simon Howard <fraggle@gmail.com>
date: Fri Jan 5 18:39:39 EST 2007

Add quit prompt message missing in the Doom source release.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 818

--- 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 *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.",
--- 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[];