Speed up mouse speed.

This commit is contained in:
梁鸿 2025-02-16 20:42:13 +08:00
parent 9e1500692c
commit 300022c68c
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 * 4);
movy = movy * (1.6 * 4);
movx = movx * (0.9 * 8);
movy = movy * (1.6 * 8);
int offset_x = movx;
int offset_y = movy;