diff options
| author | JMC47 <JMC4789@gmail.com> | 2019-04-15 20:43:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-15 20:43:31 -0400 |
| commit | 80d21b8ffb4c2aa7fad2c4f407019a2f9a125f51 (patch) | |
| tree | 9d0502cdd1530f8e28ff005e974fe6c6f465f522 /Source/Core/InputCommon/ControllerEmu/ControlGroup | |
| parent | 63f30cc44da248b0226e1c8724b3e53ecf4c768f (diff) | |
| parent | f3aaf5deaafd59d8c6994c7780e0b72e90a6301f (diff) | |
Merge pull request #8002 from JMC47/CursorSlowdown
Slow down relative input cursor
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h index f22172e13d..7def851cc4 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h @@ -41,7 +41,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; |
