From ccb1b27acc35859fe35c909c9bd005b9148ebc89 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 4 Sep 2005 15:59:45 +0000 Subject: 'novert' command line option to disable vertical mouse movement Subversion-branch: /trunk/chocolate-doom Subversion-revision: 69 --- src/d_main.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/d_main.c') diff --git a/src/d_main.c b/src/d_main.c index 868b5414..3b031a11 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: d_main.c 62 2005-08-31 21:50:57Z fraggle $ +// $Id: d_main.c 69 2005-09-04 15:59:45Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.11 2005/09/04 15:59:45 fraggle +// 'novert' command line option to disable vertical mouse movement +// // Revision 1.10 2005/08/31 21:50:57 fraggle // Nicer banner showing the game type (once we know). Remove dead code. // Find the config file properly. @@ -68,7 +71,7 @@ //----------------------------------------------------------------------------- -static const char rcsid[] = "$Id: d_main.c 62 2005-08-31 21:50:57Z fraggle $"; +static const char rcsid[] = "$Id: d_main.c 69 2005-09-04 15:59:45Z fraggle $"; #define BGCOLOR 7 #define FGCOLOR 8 @@ -925,6 +928,9 @@ void D_DoomMain (void) else if (M_CheckParm ("-deathmatch")) deathmatch = 1; + if (M_CheckParm("-novert")) + novert = 1; + // set the location for default.cfg SetBaseDefault(); -- cgit v1.2.3