diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-06-08 12:22:19 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-06-08 12:22:19 +0800 |
commit | 44a8707e3248a258ecdb1615ba12b5461807eec9 (patch) | |
tree | b13cf3843058f0c4095820b7584023dea310bcf8 /include/ansi.h | |
parent | a8cf565dba1c16207d35c147ff876853126b9b8d (diff) | |
download | pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar.gz pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar.bz2 pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar.lz pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar.xz pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.tar.zst pttbbs-44a8707e3248a258ecdb1615ba12b5461807eec9.zip |
apply ansi system to more files
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2798 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/ansi.h')
-rw-r--r-- | include/ansi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ansi.h b/include/ansi.h index 1b0d9073..cb7e86cd 100644 --- a/include/ansi.h +++ b/include/ansi.h @@ -16,7 +16,7 @@ // Common ANSI commands. #define ANSI_RESET ESC_STR "[m" #define ANSI_COLOR(x) ESC_STR "[" #x "m" -#define ANSI_MOVETO(x,y) ESC_STR "[" #x ";" #y "H" +#define ANSI_MOVETO(y,x) ESC_STR "[" #y ";" #x "H" #define ANSI_CLRTOEND ESC_STR "[K" #endif /* INCLUDE_ANSI_H */ |