Better handling of big FAIL banned in case of errors

This commit is contained in:
Sam Demeulemeester 2023-03-29 18:29:59 +02:00
parent c6b04e5414
commit 79bb781431
2 changed files with 3 additions and 2 deletions

View File

@ -399,7 +399,6 @@ void restore_big_status(void)
restore_screen_region(POP_STATUS_REGION, popup_status_save_buffer);
big_status_displayed = false;
enable_big_status = false;
}
void check_input(void)
@ -410,6 +409,7 @@ void check_input(void)
return;
} else if (big_status_displayed) {
restore_big_status();
enable_big_status = false;
}
switch (input_key) {

View File

@ -671,7 +671,8 @@ void main(void)
if (error_count == 0) {
display_status("Pass ");
display_big_status(true);
//display_notice("** Pass completed, no errors **");
} else {
display_big_status(false);
}
}
}