From 1b12307ede3829b006baf093affb693068754c00 Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 9 Sep 2009 19:05:10 +0000 Subject: [PATCH] use -developer automatically in debug builds git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9172 d7cf8633-e32d-0410-b094-e92efae38249 --- host.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/host.c b/host.c index f01795af..cff4feb0 100644 --- a/host.c +++ b/host.c @@ -991,8 +991,12 @@ static void Host_Init (void) srand(time(NULL)); // FIXME: this is evil, but possibly temporary + // LordHavoc: doesn't seem very temporary... + // LordHavoc: enabled this by default on debug +#ifndef DEBUG // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers) if (COM_CheckParm("-developer")) +#endif { developer.value = developer.integer = 1; developer.string = "1"; -- 2.39.2