aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'display.c')
-rw-r--r--display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/display.c b/display.c
index d0220f1..803044e 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.18 2002/02/12 08:43:46 ukai Exp $ */
+/* $Id: display.c,v 1.19 2002/02/14 03:47:48 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -677,8 +677,8 @@ redrawLineImage(Buffer *buf, Line *l, int i)
h = image->height - sy;
else
h = (int)(pixel_per_line - sy);
- if (w > (int)((buf->COLS - rcol + column) * pixel_per_char))
- w = (int)((buf->COLS - rcol + column) * pixel_per_char);
+ if (w > (int)((buf->rootX + buf->COLS) * pixel_per_char - x))
+ w = (int)((buf->rootX + buf->COLS) * pixel_per_char - x);
if (h > (int)(LASTLINE * pixel_per_line - y))
h = (int)(LASTLINE * pixel_per_line - y);
addImage(cache, x, y, sx, sy, w, h);