Replace busy-wait cli_delay with time-based cli_sleep in remaining files

This commit is contained in:
Chris
2026-02-08 14:54:36 +01:00
parent b245dc5f00
commit 9728222d3c
5 changed files with 6 additions and 6 deletions

View File

@@ -9,6 +9,6 @@ void cli_cmd_readtheman(char *args) {
cli_write("Fuck you.\n");
for(int i=0; i<3; i++) {
cli_cmd_beep(NULL);
cli_delay(1000000);
cli_sleep(10);
}
}