feature: terminal scroll works again (with a bg image, without the bg image it's a wip)

This commit is contained in:
2024-12-17 15:33:21 +01:00
parent 3b0b090430
commit dda9c8a1ef
6 changed files with 840 additions and 661 deletions

View File

@ -1,4 +1,4 @@
int isprint(int c)
{
return (32 <= c && c < 127);
}
return (c >= 32 && c < 127);
}