1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +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:
atomiclama 2017-12-06 09:17:55 +00:00
parent 49ba30174b
commit 6e5ad5d210

View file

@ -1069,7 +1069,7 @@ static void osdGetBlackboxStatusString(char * buff)
#endif
default:
storageDeviceIsWorking = true;
break;
}
if (storageDeviceIsWorking) {