summaryrefslogtreecommitdiff
path: root/src/core/hid/emulated_console.cpp
diff options
context:
space:
mode:
authorGravatar Mai M2022-01-17 13:42:57 -0500
committerGravatar GitHub2022-01-17 13:42:57 -0500
commit345bcd4cdffb495429ec8056c41029eacbcf6289 (patch)
treea787a0905af9db563bf6a05f3883bef4542d85b5 /src/core/hid/emulated_console.cpp
parentMerge pull request #7719 from gidoly/patch-6 (diff)
parentCorrect assignment source for rotations (diff)
downloadyuzu-345bcd4cdffb495429ec8056c41029eacbcf6289.tar.gz
yuzu-345bcd4cdffb495429ec8056c41029eacbcf6289.tar.xz
yuzu-345bcd4cdffb495429ec8056c41029eacbcf6289.zip
Merge pull request #7727 from v1993/patch-3
hid: Correct assignment source for rotations
Diffstat (limited to 'src/core/hid/emulated_console.cpp')
-rw-r--r--src/core/hid/emulated_console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_console.cpp b/src/core/hid/emulated_console.cpp
index 08f8af551..eef0ff493 100644
--- a/src/core/hid/emulated_console.cpp
+++ b/src/core/hid/emulated_console.cpp
@@ -158,7 +158,7 @@ void EmulatedConsole::SetMotion(const Common::Input::CallbackStatus& callback) {
158 auto& motion = console.motion_state; 158 auto& motion = console.motion_state;
159 motion.accel = emulated.GetAcceleration(); 159 motion.accel = emulated.GetAcceleration();
160 motion.gyro = emulated.GetGyroscope(); 160 motion.gyro = emulated.GetGyroscope();
161 motion.rotation = emulated.GetGyroscope(); 161 motion.rotation = emulated.GetRotations();
162 motion.orientation = emulated.GetOrientation(); 162 motion.orientation = emulated.GetOrientation();
163 motion.quaternion = emulated.GetQuaternion(); 163 motion.quaternion = emulated.GetQuaternion();
164 motion.gyro_bias = emulated.GetGyroBias(); 164 motion.gyro_bias = emulated.GetGyroBias();