diff options
author | Simon Howard | 2005-09-04 15:59:45 +0000 |
---|---|---|
committer | Simon Howard | 2005-09-04 15:59:45 +0000 |
commit | ccb1b27acc35859fe35c909c9bd005b9148ebc89 (patch) | |
tree | 8edba1a7d8c0cae38f5a14ba053e51be1f759fed /src/doomstat.h | |
parent | 053bcdff05fc4f2919d177dbb5129ece44042083 (diff) | |
download | chocolate-doom-ccb1b27acc35859fe35c909c9bd005b9148ebc89.tar.gz chocolate-doom-ccb1b27acc35859fe35c909c9bd005b9148ebc89.tar.bz2 chocolate-doom-ccb1b27acc35859fe35c909c9bd005b9148ebc89.zip |
'novert' command line option to disable vertical mouse movement
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 69
Diffstat (limited to 'src/doomstat.h')
-rw-r--r-- | src/doomstat.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/doomstat.h b/src/doomstat.h index 9339009d..ad67857f 100644 --- a/src/doomstat.h +++ b/src/doomstat.h @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: doomstat.h 66 2005-09-04 14:51:19Z fraggle $ +// $Id: doomstat.h 69 2005-09-04 15:59:45Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -85,6 +85,9 @@ extern skill_t gameskill; extern int gameepisode; extern int gamemap; +// vertical movement from mouse/joystick disabled +extern boolean novert; + // Nightmare mode flag, single player. extern boolean respawnmonsters; @@ -292,6 +295,9 @@ extern int ticdup; //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.6 2005/09/04 15:59:45 fraggle +// 'novert' command line option to disable vertical mouse movement +// // Revision 1.5 2005/09/04 14:51:19 fraggle // Display the correct quit messages according to which game is being played. // Remove "language" variable (do this through gettext, if ever) |