mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
Change switch default handling
Currently if no black box device is selected the default case sets storageDeviceIsWorking = true. I believe this to be wrong. This commit keeps the initial setting of false.
This commit is contained in:
parent
49ba30174b
commit
6e5ad5d210
1 changed files with 1 additions and 1 deletions
|
@ -1069,7 +1069,7 @@ static void osdGetBlackboxStatusString(char * buff)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
default:
|
default:
|
||||||
storageDeviceIsWorking = true;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (storageDeviceIsWorking) {
|
if (storageDeviceIsWorking) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue