diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-07 19:06:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-07 19:06:10 -0400 |
| commit | 8f605b542cf8cc1145364095d7af5b9af5c109c4 (patch) | |
| tree | 0a9d3093c5729001ae0937db07b6a847feb6da13 /src/core/hid/input_converter.cpp | |
| parent | 2688fb1aa2d80fc4edac87ff93365f3570cd3af8 (diff) | |
| parent | cf023aa8ec93193d4827b3034c9e7d35a0edfc2a (diff) | |
Merge pull request #10195 from german77/mutex
core: hid: Update motion on a better place
Diffstat (limited to 'src/core/hid/input_converter.cpp')
| -rw-r--r-- | src/core/hid/input_converter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/input_converter.cpp b/src/core/hid/input_converter.cpp index 53b00b1f9..4ccb1c596 100644 --- a/src/core/hid/input_converter.cpp +++ b/src/core/hid/input_converter.cpp @@ -86,7 +86,7 @@ Common::Input::MotionStatus TransformToMotion(const Common::Input::CallbackStatu .range = 1.0f, .offset = 0.0f, }; - status.delta_timestamp = 5000; + status.delta_timestamp = 1000; status.force_update = true; status.accel.x = { .value = 0.0f, |
