From f3aaf5deaafd59d8c6994c7780e0b72e90a6301f Mon Sep 17 00:00:00 2001 From: JMC47 Date: Mon, 15 Apr 2019 16:46:13 -0400 Subject: [PATCH] Reduce Relative Input Cursor Speed Dramatically This makes it about 1/4th the speed which may be a bit slow, but should work for most controllers. --- Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h index c66b2b896c..475caf13cb 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h @@ -39,7 +39,7 @@ public: private: // This is used to reduce the cursor speed for relative input // to something that makes sense with the default range. - static constexpr double STEP_PER_SEC = 0.04 * 200; + static constexpr double STEP_PER_SEC = 0.01 * 200; // Smooth out forward/backward movements: static constexpr double STEP_Z_PER_SEC = 0.05 * 200;