Usermode/IRC Client - Fixed incorrect ordering on \e[H arguments
authorJohn Hodge <[email protected]>
Sun, 8 Sep 2013 14:29:42 +0000 (22:29 +0800)
committerJohn Hodge <[email protected]>
Sun, 8 Sep 2013 14:29:42 +0000 (22:29 +0800)
Usermode/Applications/irc_src/main.c [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index f571783..f05d872
@@ -840,7 +840,7 @@ char *GetValue(char *Src, int *Ofs)
 
 void SetCursorPos(int Row, int Col)
 {
-       printf("\x1B[%i;%iH", Col, Row);
+       printf("\x1B[%i;%iH", Row, Col);
 }
 
 static inline int isdigit(int ch)

UCC git Repository :: git.ucc.asn.au