summaryrefslogtreecommitdiff
path: root/src/setup/display.c
diff options
context:
space:
mode:
authorSimon Howard2011-03-07 00:01:40 +0000
committerSimon Howard2011-03-07 00:01:40 +0000
commit4755980aed7173227e876602ce78cf31bbb97118 (patch)
tree62ecc44a3cad9ecae44f252d8da5e68ca1de701e /src/setup/display.c
parent43e82bdf93c0c3971767a63072db5b0080c2f6c6 (diff)
downloadchocolate-doom-4755980aed7173227e876602ce78cf31bbb97118.tar.gz
chocolate-doom-4755980aed7173227e876602ce78cf31bbb97118.tar.bz2
chocolate-doom-4755980aed7173227e876602ce78cf31bbb97118.zip
Update config variable binding in setup tool so that the correct
variables are bound for Strife. Add option for show_talk to sound configuration screen. Subversion-branch: /branches/strife-branch Subversion-revision: 2296
Diffstat (limited to 'src/setup/display.c')
-rw-r--r--src/setup/display.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/setup/display.c b/src/setup/display.c
index 9ed0ae5f..df264749 100644
--- a/src/setup/display.c
+++ b/src/setup/display.c
@@ -689,7 +689,8 @@ void ConfigDisplay(void)
TXT_NewCheckBox("Graphical startup", &graphical_startup));
}
- if (gamemission == doom || gamemission == heretic)
+ if (gamemission == doom || gamemission == heretic
+ || gamemission == strife)
{
TXT_AddWidget(window,
TXT_NewCheckBox("Show ENDOOM screen", &show_endoom));
@@ -723,7 +724,8 @@ void BindDisplayVariables(void)
M_BindVariable("usegamma", &usegamma);
- if (gamemission == doom || gamemission == heretic)
+ if (gamemission == doom || gamemission == heretic
+ || gamemission == strife)
{
M_BindVariable("show_endoom", &show_endoom);
}