checked Apple II/IIe support

This commit is contained in:
Luxferre
2026-01-06 16:57:08 +02:00
parent 1f0c6fbe27
commit f3759a1f9b
3 changed files with 13 additions and 13 deletions
+2
View File
@@ -84,6 +84,7 @@ char get_choice() {
default:
res = CH_INVAL;
}
printf("\n");
return res;
}
@@ -95,6 +96,7 @@ int confirm(char *prompt) {
scanf(" %c", &c);
if(c == 'y' || c == 'Y') d = 1;
else d = 0;
printf("\n");
return d;
}