1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

[Horus] Restore emergency mode priority over "no SD card" warning

This commit is contained in:
Andre Bernet 2017-02-23 23:01:02 +01:00
parent 0857e27665
commit b866baae65
2 changed files with 2 additions and 2 deletions

View file

@ -427,7 +427,7 @@ void perMain()
#if !defined(EEPROM)
// In case the SD card is removed during the session
if (!SD_CARD_PRESENT()) {
if (!SD_CARD_PRESENT() && !unexpectedShutdown) {
drawFatalErrorScreen(STR_NO_SDCARD);
return;
}