summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-11-04 00:06:21 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2021-11-25 03:30:27 +0100
commitc35af8d1c05d94028b215df7721e5235083bcb97 (patch)
treed377565907cc6e78495c96949cb0a36d082ae4be
parentcore/hid: Prevent Emulated controller from flapping with multiple inputs devices (diff)
downloadyuzu-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
-rw-r--r--src/input_common/input_poller.cpp2
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;
}