summaryrefslogtreecommitdiff
path: root/src/setup/mainmenu.c
diff options
context:
space:
mode:
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;