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