Skip to content

Commit

Permalink
Fixed +speed having inverted up/down
Browse files Browse the repository at this point in the history
  • Loading branch information
smallmodel committed Aug 20, 2023
1 parent ff4987c commit 20282ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/client/cl_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1051,8 +1051,8 @@ void CL_InitInput( void ) {
Cmd_AddCommand("-leanleft", IN_LeanLeftUp);
Cmd_AddCommand("+leanright", IN_LeanRightDown);
Cmd_AddCommand("-leanright", IN_LeanRightUp);
Cmd_AddCommand("+speed", IN_SpeedUp);
Cmd_AddCommand("-speed", IN_SpeedDown);
Cmd_AddCommand("+speed", IN_SpeedDown);
Cmd_AddCommand("-speed", IN_SpeedUp);
Cmd_AddCommand("+button0", IN_Button0Down);
Cmd_AddCommand("-button0", IN_Button0Up);
Cmd_AddCommand("+button1", IN_Button1Down);
Expand Down

0 comments on commit 20282ff

Please sign in to comment.