diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-09-11 18:33:11 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-09-11 18:33:11 +0800 |
commit | ad23a17603f912b7a93f4840f163a7a8bda59bdb (patch) | |
tree | 4ed65277a84fdfc5583e74cdcf7a1890fbf4f4b6 /mbbsd | |
parent | 7fd35b4563b742f1c8b3fc725aa26d9e387e5b70 (diff) | |
download | pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar.gz pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar.bz2 pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar.lz pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar.xz pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.tar.zst pttbbs-ad23a17603f912b7a93f4840f163a7a8bda59bdb.zip |
t_columns should not set as ANSILINELEN
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@521 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c index adf05df7..eefdbbea 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.12 2002/09/11 09:59:02 kcwu Exp $ */ +/* $Id: screen.c,v 1.13 2002/09/11 10:33:11 kcwu Exp $ */ #include "bbs.h" #ifdef SUPPORT_GB @@ -26,7 +26,7 @@ initscr() { if (!big_picture) { scr_lns = t_lines; - scr_cols = t_columns = ANSILINELEN; + scr_cols = ANSILINELEN; /* scr_cols = MIN(t_columns, ANSILINELEN); */ big_picture = (screenline_t *) calloc(scr_lns, sizeof(screenline_t)); docls = YEA; |