summaryrefslogtreecommitdiff
path: root/src/m_config.c
diff options
context:
space:
mode:
authorSimon Howard2011-03-06 23:43:29 +0000
committerSimon Howard2011-03-06 23:43:29 +0000
commit43e82bdf93c0c3971767a63072db5b0080c2f6c6 (patch)
tree5f65bea792fe5879fdb3107a8ac07f2e20935a23 /src/m_config.c
parent07bb5a69ef9f1240bf887585aa7162d854368d03 (diff)
downloadchocolate-doom-43e82bdf93c0c3971767a63072db5b0080c2f6c6.tar.gz
chocolate-doom-43e82bdf93c0c3971767a63072db5b0080c2f6c6.tar.bz2
chocolate-doom-43e82bdf93c0c3971767a63072db5b0080c2f6c6.zip
Fix up config file variables to match Vanilla.
Subversion-branch: /branches/strife-branch Subversion-revision: 2295
Diffstat (limited to 'src/m_config.c')
-rw-r--r--src/m_config.c36
1 files changed, 29 insertions, 7 deletions
diff --git a/src/m_config.c b/src/m_config.c
index 0772893a..b934d9d4 100644
--- a/src/m_config.c
+++ b/src/m_config.c
@@ -142,6 +142,13 @@ static default_t doom_defaults_list[] =
CONFIG_VARIABLE_INT(music_volume),
//!
+ // If non-zero, dialogue text is displayed over characters' pictures
+ // when engaging actors who have voices. (Strife only)
+ //
+
+ CONFIG_VARIABLE_INT(show_talk),
+
+ //!
// Volume of voice sound effects, range 0-15. (Strife only)
//
@@ -155,13 +162,6 @@ static default_t doom_defaults_list[] =
CONFIG_VARIABLE_INT(show_messages),
- //!
- // If non-zero, dialogue text is displayed over characters' pictures
- // when engaging actors who have voices. (Strife only)
- //
-
- CONFIG_VARIABLE_INT(show_text),
-
//!
// Keyboard key to turn right.
//
@@ -443,6 +443,16 @@ static default_t doom_defaults_list[] =
CONFIG_VARIABLE_INT(screenblocks),
//!
+ // Screen size, range 3-11.
+ //
+ // A value of 11 gives a full-screen view with the status bar not
+ // displayed. A value of 10 gives a full-screen view with the
+ // status bar displayed. (Strife only)
+ //
+
+ CONFIG_VARIABLE_INT(screensize),
+
+ //!
// Screen detail. Zero gives normal "high detail" mode, while
// a non-zero value gives "low detail" mode.
//
@@ -522,6 +532,11 @@ static default_t doom_defaults_list[] =
CONFIG_VARIABLE_STRING(back_flat),
+ //!
+ // Multiplayer nickname (?). (Strife only)
+ //
+
+ CONFIG_VARIABLE_STRING(nickname),
//!
// Multiplayer chat macro: message to send when alt+0 is pressed.
@@ -582,6 +597,13 @@ static default_t doom_defaults_list[] =
//
CONFIG_VARIABLE_STRING(chatmacro9),
+
+ //!
+ // Serial port number to use for SERSETUP.EXE (unused).
+ // (Strife only)
+ //
+
+ CONFIG_VARIABLE_INT(comport),
};
static default_collection_t doom_defaults =