mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[client] Correct the description of move.up axis
My 3d mouse has +Z as down (makes sense, really), which is what I set the code to, but I guess I forgot to correct the description.
This commit is contained in:
parent
4522264c57
commit
706995f6b3
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ in_axis_t in_move_side = {
|
|||
in_axis_t in_move_up = {
|
||||
.mode = ina_set,
|
||||
.name = "move.up",
|
||||
.description = "Move up (positive) or down (negative)",
|
||||
.description = "Move up (negative) or down (positive)",
|
||||
};
|
||||
|
||||
in_axis_t in_cam_forward = {
|
||||
|
|
Loading…
Reference in a new issue