summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-09-11 18:33:11 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-09-11 18:33:11 +0800
commit2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60 (patch)
tree174a7db8db97b8723a4aaa0804e08d5a78871edd
parent24a96dbad6b3de642584473972165b314985251d (diff)
downloadpttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar.gz
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar.bz2
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar.lz
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar.xz
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.tar.zst
pttbbs-2e46e59ff7ca640b5c61b9f9d0cf57c1a6d11e60.zip
t_columns should not set as ANSILINELEN
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@521 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/screen.c b/pttbbs/mbbsd/screen.c
index adf05df7..eefdbbea 100644
--- a/pttbbs/mbbsd/screen.c
+++ b/pttbbs/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;