Rev 1498 | Rev 1534 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1498 | Rev 1500 | ||
|---|---|---|---|
| Line 62... | Line 62... | ||
| 62 | char control[20]; |
62 | char control[20]; |
| 63 | 63 | ||
| 64 | if (row > 200 || col > 200) |
64 | if (row > 200 || col > 200) |
| 65 | return; |
65 | return; |
| 66 | 66 | ||
| 67 | snprintf(control, 20, "\033[%d;%df",row, col); |
67 | snprintf(control, 20, "\033[%d;%df",row+1, col+1); |
| 68 | sysputs(control); |
68 | sysputs(control); |
| 69 | } |
69 | } |
| 70 | 70 | ||
| 71 | /** ANSI terminal emulation main thread */ |
71 | /** ANSI terminal emulation main thread */ |
| 72 | static void sysio_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
72 | static void sysio_client_connection(ipc_callid_t iid, ipc_call_t *icall) |