Fix altimeter bug.

main
Luigi F. Cruz 2023-07-10 21:00:48 -03:00
rodzic 5712641436
commit aae5430773
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -146,7 +146,7 @@ int main(void) {
printf("Type the recording index.\n");
scanf("%d", &index);
if (index >= read_boot_count(false)) {
if (index > read_boot_count(false)) {
printf("Index out of range.\n");
break;
}