Group the fail case in one negation (PR#2572)
This commit is contained in:
parent
7ddf1cda1d
commit
0f5ada8cbd
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user