cstring and csprite are working

This commit is contained in:
2025-02-18 15:28:17 -08:00
parent 993330a3a4
commit a77df22ffe
5 changed files with 46 additions and 41 deletions

View File

@@ -170,9 +170,9 @@ char term_tinput() {
return __term_input_buffer__[0];
}
void term_disable_cursor() {
fputs("\033[?25l", stdout);
printf("\033[?25l", stdout);
}
void term_enable_cursor() {
fputs("\033[?25h", stdout);
printf("\033[?25h", stdout);
}