Skip to content

Commit

Permalink
Remove option cycling via mousewheel (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Aug 1, 2024
1 parent 790fe8d commit 3d6dcf8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2379,7 +2379,6 @@ void M_Setup_Key (int k)

case K_LEFTARROW:
//case K_MOUSE2:
case K_MWHEELDOWN:
if (setup_cursor < 2)
return;
M_ThrottledSound ("misc/menu3.wav");
Expand All @@ -2389,7 +2388,6 @@ void M_Setup_Key (int k)
setup_bottom = setup_bottom - 1;
break;
case K_RIGHTARROW:
case K_MWHEELUP:
if (setup_cursor < 2)
return;
forward:
Expand Down Expand Up @@ -4455,13 +4453,11 @@ void M_Options_Key (int k)
return;

case K_LEFTARROW:
case K_MWHEELDOWN:
//case K_MOUSE2:
M_AdjustSliders (-1);
break;

case K_RIGHTARROW:
case K_MWHEELUP:
M_AdjustSliders (1);
break;

Expand Down Expand Up @@ -5730,7 +5726,6 @@ void M_GameOptions_Key (int key)
break;

case K_LEFTARROW:
case K_MWHEELDOWN:
//case K_MOUSE2:
if (gameoptions_cursor == 0)
break;
Expand All @@ -5739,7 +5734,6 @@ void M_GameOptions_Key (int key)
break;

case K_RIGHTARROW:
case K_MWHEELUP:
if (gameoptions_cursor == 0)
break;
M_ThrottledSound ("misc/menu3.wav");
Expand Down

0 comments on commit 3d6dcf8

Please sign in to comment.