summaryrefslogtreecommitdiff
path: root/src/hexen/st_start.c
diff options
context:
space:
mode:
authorSimon Howard2011-09-24 18:10:38 +0000
committerSimon Howard2011-09-24 18:10:38 +0000
commitf742664b920500cb7343ee40338ab6add6acb9a2 (patch)
tree33cd88ad72862f4d7fc72025deaae4cd930a1d82 /src/hexen/st_start.c
parent9af0a3c8fd56dcf170698c3867a376a822f39d08 (diff)
downloadchocolate-doom-f742664b920500cb7343ee40338ab6add6acb9a2.tar.gz
chocolate-doom-f742664b920500cb7343ee40338ab6add6acb9a2.tar.bz2
chocolate-doom-f742664b920500cb7343ee40338ab6add6acb9a2.zip
Don't show graphical startup for Heretic, Hexen or Strife when running
with -testcontrols. Subversion-branch: /branches/v2-branch Subversion-revision: 2399
Diffstat (limited to 'src/hexen/st_start.c')
-rw-r--r--src/hexen/st_start.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hexen/st_start.c b/src/hexen/st_start.c
index 897c1810..391e26a6 100644
--- a/src/hexen/st_start.c
+++ b/src/hexen/st_start.c
@@ -129,7 +129,7 @@ void ST_Init(void)
using_graphical_startup = false;
- if (graphical_startup && !debugmode)
+ if (graphical_startup && !debugmode && !testcontrols)
{
I_SetWindowTitleHR("Hexen startup - " PACKAGE_STRING);