Skip to content
Snippets Groups Projects
Commit 7b95a659 authored by deuce's avatar deuce
Browse files

On screen clear, copy entire screen to backscroll.

I've ALWAYS hated it when term programs loose stuff from the backscroll
on a terminal clear.
parent e372071a
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,12 @@ void clearscreen(char attr)
char *buf;
int x,y,j;
term.backpos+=term.height;
if(term.backpos>backlines) {
memmove(term.scrollback,term.scrollback+term.width*2*(term.backpos-term.backlines),term.width*2*(backlines-(term.backpos-term.backlines)));
term.backpos=backlines;
}
gettext(term.x+1,term.y+1,term.x+term.width,term.y+term.height,term.scrollback+(term.backpos-term.height)*term.width*2);
buf=(char *)malloc(term.width*(term.height)*2);
j=0;
for(x=0;x<term.width;x++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment