mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
heh, and in_pre_amp
This commit is contained in:
parent
cd0d260549
commit
20188c6670
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ IN_Move (void)
|
|||
if (!in_mouse_avail)
|
||||
return;
|
||||
|
||||
in_mouse_x *= in_mouse_pre_amp->value *= in_pre_amp->value;
|
||||
in_mouse_y *= in_mouse_pre_amp->value *= in_pre_amp->value;
|
||||
in_mouse_x *= in_mouse_pre_amp->value * in_pre_amp->value;
|
||||
in_mouse_y *= in_mouse_pre_amp->value * in_pre_amp->value;
|
||||
|
||||
if (in_mouse_filter->int_val) {
|
||||
in_mouse_x = (in_mouse_x + in_old_mouse_x) * 0.5;
|
||||
|
|
Loading…
Reference in a new issue