Update mouse speed up scale.
This commit is contained in:
parent
300022c68c
commit
1e8dd35451
|
@ -89,8 +89,8 @@ enum screen_pos_e update_mouse_position(device_t *state, mouse_values_t *values)
|
|||
|
||||
float movx = values->move_x;
|
||||
float movy = values->move_y;
|
||||
movx = movx * (0.9 * 8);
|
||||
movy = movy * (1.6 * 8);
|
||||
movx = movx * (0.9 * 10);
|
||||
movy = movy * (1.6 * 10);
|
||||
|
||||
int offset_x = movx;
|
||||
int offset_y = movy;
|
||||
|
|
Loading…
Reference in New Issue