1
0
Fork 0

Bug fix in setCursorPos

This commit is contained in:
Esteban Lombeyda 2014-03-27 16:57:13 +01:00
parent af3acf5efe
commit 99dbeb4726
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ static void eraseEol(struct current *current)
static void setCursorPos(struct current *current, int x)
{
fd_printf(current->fd, "\r\x1b[%dC", x);
fd_printf(current->fd, "\r\x1b[%dG", x);
}
/**