summaryrefslogtreecommitdiff
path: root/src/setup/mainmenu.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/mainmenu.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/mainmenu.c')
-rw-r--r--src/setup/mainmenu.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/setup/mainmenu.c b/src/setup/mainmenu.c
index 55496010..3180e58e 100644
--- a/src/setup/mainmenu.c
+++ b/src/setup/mainmenu.c
@@ -177,6 +177,9 @@ static txt_button_t *GetLaunchButton(void)
case hexen:
label = "Save parameters and launch Hexen";
break;
+ case strife:
+ label = "Save parameters and launch STRIFE!";
+ break;
default:
label = "Save parameters and launch game";
break;
@@ -206,9 +209,9 @@ void MainMenu(void)
(TxtWidgetSignalFunc) ConfigJoystick, NULL),
NULL);
- // The compatibility window is only appropriate for Doom.
+ // The compatibility window is only appropriate for Doom/Strife.
- if (gamemission == doom)
+ if (gamemission == doom || gamemission == strife)
{
txt_button_t *button;