Usermode/IRC Client - Fixed incorrect ordering on \e[H arguments
[tpg/acess2.git] / Usermode / Applications / irc_src / main.c
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