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

Fix bug in erase char

parent f6d86098
No related branches found
No related tags found
No related merge requests found
......@@ -848,7 +848,7 @@ void do_ansi(char *retbuf, size_t retsize, int *speed)
p2[j++]=' ';
p2[j++]=cterm.attr;
}
puttext(cterm.x+wherex()-1,cterm.y+wherey()-1,cterm.x+wherex()-1+i,cterm.y+wherey()-1,p2);
puttext(cterm.x+wherex()-1,cterm.y+wherey()-1,cterm.x+wherex()-1+i-1,cterm.y+wherey()-1,p2);
break;
case 'Z':
i=atoi(cterm.escbuf+1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment