Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lightmanLP committed Jan 9, 2025
1 parent 4890f77 commit d5ca392
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mm/2s2h/BenGui/SearchableMenuItems.h
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ void AddEnhancements() {
"gEnhancements.Camera.Mouse.Enabled",
"",
WIDGET_CVAR_CHECKBOX,
{ .defaultValue = false } },
{ .defaultVariant = false } },
{ "Invert Camera X Axis",
"gEnhancements.Camera.Mouse.InvertX",
"Inverts the Camera X Axis",
Expand All @@ -1038,7 +1038,7 @@ void AddEnhancements() {
"gEnhancements.Camera.Mouse.InvertY",
"Inverts the Camera Y Axis",
WIDGET_CVAR_CHECKBOX,
{ .defaultValue = true },
{ .defaultVariant = true },
nullptr,
[](widgetInfo& info) { info.isHidden = disabledMap.at(DISABLE_FOR_MOUSE_OFF).active; } },
{ "Third-Person Horizontal Sensitivity: %.0f",
Expand All @@ -1057,7 +1057,6 @@ void AddEnhancements() {
{ .min = 0.01f, .max = 5.0f, .defaultVariant = 1.0f, .format = "%.0f%%", .isPercentage = true },
nullptr,
[](widgetInfo& info) { info.isHidden = disabledMap.at(DISABLE_FOR_MOUSE_OFF).active; } },

{ "First-Person invert X Axis",
"gEnhancements.Camera.Mouse.FirstPerson.InvertX",
"",
Expand All @@ -1069,7 +1068,7 @@ void AddEnhancements() {
"gEnhancements.Camera.Mouse.FirstPerson.InvertY",
"",
WIDGET_CVAR_CHECKBOX,
{ .defaultValue = true },
{ .defaultVariant = true },
nullptr,
[](widgetInfo& info) { info.isHidden = disabledMap.at(DISABLE_FOR_MOUSE_OFF).active; } },
{ "First-Person Horizontal Sensitivity: %.0f",
Expand Down

0 comments on commit d5ca392

Please sign in to comment.