Update mouse speed up scale.

This commit is contained in:
Colin 2025-03-04 11:49:35 +08:00
parent 300022c68c
commit 1e8dd35451
1 changed files with 2 additions and 2 deletions

View File

@ -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;