diff options
author | german77 <juangerman-13@hotmail.com> | 2021-11-04 00:06:21 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-25 03:30:27 +0100 |
commit | c35af8d1c05d94028b215df7721e5235083bcb97 (patch) | |
tree | d377565907cc6e78495c96949cb0a36d082ae4be /src/input_common | |
parent | core/hid: Prevent Emulated controller from flapping with multiple inputs devices (diff) | |
download | yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar.gz yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar.bz2 yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar.lz yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar.xz yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.tar.zst yuzu-c35af8d1c05d94028b215df7721e5235083bcb97.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/input_poller.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input_common/input_poller.cpp b/src/input_common/input_poller.cpp index 01c435802..92cf690cd 100644 --- a/src/input_common/input_poller.cpp +++ b/src/input_common/input_poller.cpp @@ -606,6 +606,8 @@ public: .raw_value = input_engine->GetAxis(identifier, axis_z), .properties = properties_z, }; + status.delta_timestamp = 5000; + status.force_update = true; return status; } |