summaryrefslogtreecommitdiff
path: root/src/strife/m_menu.c
diff options
context:
space:
mode:
authorJames Haley2011-02-20 18:36:20 +0000
committerJames Haley2011-02-20 18:36:20 +0000
commit1dfe19b3066aa4419d236a48a4765ad2eb393141 (patch)
treea34451585dcfd07ad04cb02c1345c29663726f27 /src/strife/m_menu.c
parent9e13008481a526eca87ca480bf6bc52b0f31e795 (diff)
downloadchocolate-doom-1dfe19b3066aa4419d236a48a4765ad2eb393141.tar.gz
chocolate-doom-1dfe19b3066aa4419d236a48a4765ad2eb393141.tar.bz2
chocolate-doom-1dfe19b3066aa4419d236a48a4765ad2eb393141.zip
Removed ability to disable messages, and replaced with configuration
variable to control dialogue text messages, as in vanilla. Also, absence of voices.wad, or use of the -novoices parameter, will now properly both disable voices AND enable dialogue text. Subversion-branch: /branches/strife-branch Subversion-revision: 2268
Diffstat (limited to 'src/strife/m_menu.c')
-rw-r--r--src/strife/m_menu.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c
index 4d16e3e8..972e5b75 100644
--- a/src/strife/m_menu.c
+++ b/src/strife/m_menu.c
@@ -81,8 +81,9 @@ extern boolean sendsave; // [STRIFE]
//
int mouseSensitivity = 5;
+// [STRIFE]: removed this entirely
// Show messages has default, 0 = off, 1 = on
-int showMessages = 1;
+//int showMessages = 1;
// Blocky mode, has default, 0 = high, 1 = normal
@@ -175,7 +176,7 @@ void M_ReadThis2(int choice);
void M_ReadThis3(int choice); // [STRIFE]
void M_QuitStrife(int choice);
-void M_ChangeMessages(int choice);
+//void M_ChangeMessages(int choice); [STRIFE]
void M_ChangeSensitivity(int choice);
void M_SfxVol(int choice);
void M_VoiceVol(int choice); // [STRIFE]
@@ -1173,6 +1174,8 @@ void M_ChangeShowText(void)
//
// Toggle messages on/off
//
+// [STRIFE] Messages cannot be disabled in Strife
+/*
void M_ChangeMessages(int choice)
{
// warning: unused parameter `int choice'
@@ -1186,6 +1189,7 @@ void M_ChangeMessages(int choice)
message_dontfuckwithme = true;
}
+*/
//