1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 12:25:20 +03:00

Remove profanity from comments (issue #43)

This commit is contained in:
Pierre-A 2014-11-02 14:53:57 +01:00
parent 84384e61af
commit d545ab545f
5 changed files with 7 additions and 8 deletions

View file

@ -312,10 +312,10 @@ retry:
; // prevent compiler error
}
// Found anything? Check if user fucked up or ACC is really missing.
// Found anything? Check if error or ACC is really missing.
if (accHardware == ACC_DEFAULT) {
if (accHardwareToUse > ACC_DEFAULT) {
// Nothing was found and we have a forced sensor type. Stupid user probably chose a sensor that isn't present.
// Nothing was found and we have a forced sensor that isn't present.
accHardwareToUse = ACC_DEFAULT;
goto retry;
} else {