Skip to content

Commit

Permalink
Enable mouse look by default in recommended settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Dasperal committed May 5, 2024
1 parent 8a7f8dd commit 6d81cc8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/doom/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -6236,7 +6236,7 @@ static void M_RD_BackToDefaults_Recommended()
mute_inactive_window = 0;

// Controls
mlook = 0; players[consoleplayer].centering = true;
mlook = true;
mouseSensitivity = 5;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
Expand Down Expand Up @@ -6431,7 +6431,7 @@ static void M_RD_BackToDefaults_Original()
mute_inactive_window = 0;

// Controls
mlook = 0; players[consoleplayer].centering = true;
mlook = false; players[consoleplayer].centering = true;
mouseSensitivity = 5;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
Expand Down
4 changes: 2 additions & 2 deletions src/heretic/mn_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -5809,7 +5809,7 @@ static void M_RD_BackToDefaults_Recommended(void)

// Controls
mouseSensitivity = 5;
mlook = 0; players[consoleplayer].centering = true;
mlook = true;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
novert = 1;
Expand Down Expand Up @@ -5970,7 +5970,7 @@ static void M_RD_BackToDefaults_Original(void)

// Controls
mouseSensitivity = 5;
mlook = 0; players[consoleplayer].centering = true;
mlook = false; players[consoleplayer].centering = true;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
novert = 1;
Expand Down
4 changes: 2 additions & 2 deletions src/hexen/mn_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -5873,7 +5873,7 @@ void M_RD_BackToDefaults_Recommended (void)

// Controls
mouseSensitivity = 5;
mlook = 0; players[consoleplayer].centering = true;
mlook = true;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
novert = 1;
Expand Down Expand Up @@ -5991,7 +5991,7 @@ static void M_RD_BackToDefaults_Original(void)

// Controls
mouseSensitivity = 5;
mlook = 0; players[consoleplayer].centering = true;
mlook = false; players[consoleplayer].centering = true;
mouse_acceleration = 2.0F;
mouse_threshold = 10;
novert = 1;
Expand Down
4 changes: 2 additions & 2 deletions src/i_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ static unsigned int mouse_button_state = 0;
// [JN] Вертикальное перемещение отключено по умолчанию.
int novert = 1;

// [JN] Mouselook: disabled by default.
int mlook = 0;
// [Dasperal] Mouselook: Enabled by default.
int mlook = true;

// If true, keyboard mapping is ignored, like in Vanilla Doom.
// The sensible thing to do is to disable this if you have a non-US
Expand Down

0 comments on commit 6d81cc8

Please sign in to comment.