Do not call lcd_update after presorting

This commit is contained in:
Alex Voinea 2022-07-03 09:20:03 +02:00
parent 3a5bc0462a
commit a96e60c241

View File

@ -984,14 +984,11 @@ void CardReader::presort() {
} }
} }
lcd_update(2);
KEEPALIVE_STATE(NOT_BUSY); KEEPALIVE_STATE(NOT_BUSY);
} }
void CardReader::flush_presort() { void CardReader::flush_presort() {
if (sort_count > 0) { sort_count = 0;
sort_count = 0;
}
} }
#endif // SDCARD_SORT_ALPHA #endif // SDCARD_SORT_ALPHA