From 1508f404705e2f0c2ecf63cfbbc40f1f2c20e98b Mon Sep 17 00:00:00 2001 From: Windsurf7 <70599421+Windsurf7@users.noreply.github.com> Date: Tue, 27 Jan 2026 11:46:18 +0300 Subject: [PATCH] Commit suggestion Co-authored-by: Megamouse --- rpcs3/Input/pad_thread.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rpcs3/Input/pad_thread.cpp b/rpcs3/Input/pad_thread.cpp index 8284424113..7bf2735b0d 100644 --- a/rpcs3/Input/pad_thread.cpp +++ b/rpcs3/Input/pad_thread.cpp @@ -636,10 +636,9 @@ void pad_thread::operator()() if (reset) { // RMB released → reset motion - // 512 is the neutral value within the 0-1023 motion range. - pad->m_sensors[0].m_value = 512; - pad->m_sensors[1].m_value = 512; - pad->m_sensors[2].m_value = 512; + pad->m_sensors[0].m_value = DEFAULT_MOTION_X; + pad->m_sensors[1].m_value = DEFAULT_MOTION_Y; + pad->m_sensors[2].m_value = DEFAULT_MOTION_Z; } else {