diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/pfterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/pfterm.c b/mbbsd/pfterm.c index d727467d..d82a22ef 100644 --- a/mbbsd/pfterm.c +++ b/mbbsd/pfterm.c @@ -1055,7 +1055,7 @@ outc(unsigned char c) x += 8; else x += (8-(x%8)); - x = ranged(x, 0, ft.rows-1); + x = ranged(x, 0, ft.cols-1); // erase the characters between if (x > ft.x) { |