summaryrefslogtreecommitdiffstats
path: root/mbbsd/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/screen.c')
-rw-r--r--mbbsd/screen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c
index 04dcec40..c84a6a2d 100644
--- a/mbbsd/screen.c
+++ b/mbbsd/screen.c
@@ -108,8 +108,9 @@ redoscr()
bp = &big_picture[j];
if ((len = bp->len)) {
rel_move(tc_col, tc_line, 0, i);
- if (bp->mode & STANDOUT)
+ if (bp->mode & STANDOUT) {
standoutput((char *)bp->data, 0, len, bp->sso, bp->eso);
+ }
else
output((char *)bp->data, len);
tc_col += len;