Group the fail case in one negation (PR#2572)

This commit is contained in:
Scott Lahteine 2015-07-31 18:08:26 -07:00 committed by Richard Wackerbarth
parent 7ddf1cda1d
commit 0f5ada8cbd

View file

@ -481,8 +481,7 @@ void CardReader::write_command(char *buf) {
} }
void CardReader::checkautostart(bool force) { void CardReader::checkautostart(bool force) {
if (!force && (!autostart_stilltocheck || next_autostart_ms < millis())) if (!(force || !autostart_stilltocheck || next_autostart_ms >= millis())) return;
return;
autostart_stilltocheck = false; autostart_stilltocheck = false;