mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Merge pull request #7727 from v1993/patch-3
hid: Correct assignment source for rotations
This commit is contained in:
commit
345bcd4cdf
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ void EmulatedConsole::SetMotion(const Common::Input::CallbackStatus& callback) {
|
||||||
auto& motion = console.motion_state;
|
auto& motion = console.motion_state;
|
||||||
motion.accel = emulated.GetAcceleration();
|
motion.accel = emulated.GetAcceleration();
|
||||||
motion.gyro = emulated.GetGyroscope();
|
motion.gyro = emulated.GetGyroscope();
|
||||||
motion.rotation = emulated.GetGyroscope();
|
motion.rotation = emulated.GetRotations();
|
||||||
motion.orientation = emulated.GetOrientation();
|
motion.orientation = emulated.GetOrientation();
|
||||||
motion.quaternion = emulated.GetQuaternion();
|
motion.quaternion = emulated.GetQuaternion();
|
||||||
motion.gyro_bias = emulated.GetGyroBias();
|
motion.gyro_bias = emulated.GetGyroBias();
|
||||||
|
|
Loading…
Reference in a new issue