mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 16:57:52 +00:00
general: Fix various spelling errors
This commit is contained in:
parent
80f49ed9f1
commit
23413c0d44
20 changed files with 43 additions and 43 deletions
|
@ -129,7 +129,7 @@ void MotionInput::UpdateOrientation(u64 elapsed_time) {
|
|||
rad_gyro += ki * integral_error;
|
||||
rad_gyro += kd * derivative_error;
|
||||
} else {
|
||||
// Give more weight to acelerometer values to compensate for the lack of gyro
|
||||
// Give more weight to accelerometer values to compensate for the lack of gyro
|
||||
rad_gyro += 35.0f * kp * real_error;
|
||||
rad_gyro += 10.0f * ki * integral_error;
|
||||
rad_gyro += 10.0f * kd * derivative_error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue