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

Fix nasty but in clear2bol()

parent 87ea686c
No related branches found
No related tags found
No related merge requests found
......@@ -510,7 +510,7 @@ void clear2bol(void)
buf[j++]=' ';
buf[j++]=cterm.attr;
}
puttext(cterm.x,cterm.y+wherey()-1,cterm.x+wherex()-1,cterm.y+wherey(),buf);
puttext(cterm.x,cterm.y+wherey()-1,cterm.x+wherex()-1,cterm.y+wherey()-1,buf);
}
void clear2eol(void)
......
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