feature: terminal scroll works again (with a bg image, without the bg image it's a wip)
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
int isprint(int c)
|
||||
{
|
||||
return (32 <= c && c < 127);
|
||||
}
|
||||
return (c >= 32 && c < 127);
|
||||
}
|
||||
|
Reference in New Issue
Block a user