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

Added 'crash flip active' to the list of warnings to be shown on LED_STRIP.

This commit is contained in:
mikeller 2018-11-02 01:48:06 +13:00
parent 0fae0a49c5
commit 99eab92200
2 changed files with 16 additions and 6 deletions

View file

@ -946,7 +946,7 @@ static bool osdDrawSingleElement(uint8_t item)
#endif
// Warn when in flip over after crash mode
if (osdWarnGetState(OSD_WARNING_CRASH_FLIP) && isFlipOverAfterCrashMode()) {
if (osdWarnGetState(OSD_WARNING_CRASH_FLIP) && IS_RC_MODE_ACTIVE(BOXFLIPOVERAFTERCRASH)) {
osdFormatMessage(buff, OSD_FORMAT_MESSAGE_BUFFER_SIZE, "CRASH FLIP");
break;
}