1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Fixes from review.

This commit is contained in:
mikeller 2018-06-10 01:59:29 +12:00
parent affaf86f0d
commit bc048bc23f
2 changed files with 3 additions and 3 deletions

View file

@ -133,7 +133,7 @@ float fapplyDeadband(const float value, const float deadband)
return 0;
}
return value >=0 ? value - deadband : value + deadband;
return value >= 0 ? value - deadband : value + deadband;
}
void devClear(stdev_t *dev)