From 420078449d7300dc0703b65859da6bc40ea252e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 28 Nov 2017 20:12:01 +0100 Subject: [PATCH] Finish the fine-tuning of default mouse movement kinetic settings. --- right/src/usb_report_updater.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index 9600e16..ede4c69 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -29,12 +29,12 @@ static mouse_kinetic_state_t mouseMoveState = { .downState = SerializedMouseAction_MoveDown, .leftState = SerializedMouseAction_MoveLeft, .rightState = SerializedMouseAction_MoveRight, - .intMultiplier = 10, - .initialSpeed = 20, - .acceleration = 60, - .deceleratedSpeed = 1, // 25 - .baseSpeed = 100, - .acceleratedSpeed = 255, // 100 + .intMultiplier = 25, + .initialSpeed = 5, + .acceleration = 35, + .deceleratedSpeed = 10, + .baseSpeed = 40, + .acceleratedSpeed = 80, }; static mouse_kinetic_state_t mouseScrollState = { @@ -45,7 +45,7 @@ static mouse_kinetic_state_t mouseScrollState = { .intMultiplier = 1, .initialSpeed = 16, .acceleration = 16, - .deceleratedSpeed = 1, // 25 + .deceleratedSpeed = 5, // 25 .baseSpeed = 24, .acceleratedSpeed = 255, // 100 };