aboutsummaryrefslogtreecommitdiffstats
path: root/src/crt.c
diff options
context:
space:
mode:
authorjames <>2008-02-27 00:27:22 +0000
committerjames <>2008-02-27 00:27:22 +0000
commitdd068f2faaa044fbcef7a430650a221f210cba40 (patch)
treee429c7c32e3f97b6459ad974abba691171fe71e8 /src/crt.c
parent5d11f03b6f99696f2d9df508cf7000e8f04b332b (diff)
downloadsympathy-dd068f2faaa044fbcef7a430650a221f210cba40.tar.gz
sympathy-dd068f2faaa044fbcef7a430650a221f210cba40.tar.bz2
sympathy-dd068f2faaa044fbcef7a430650a221f210cba40.zip
*** empty log message ***
Diffstat (limited to 'src/crt.c')
-rw-r--r--src/crt.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/crt.c b/src/crt.c
index b9174f9..9d6606a 100644
--- a/src/crt.c
+++ b/src/crt.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.14 2008/02/27 00:27:21 james
+ * *** empty log message ***
+ *
* Revision 1.13 2008/02/26 23:56:12 james
* *** empty log message ***
*
@@ -141,14 +144,14 @@ crt_scroll_down (CRT * c, CRT_Pos s, CRT_Pos e, int ea, int color)
l *= sizeof (CRT_CA);
n = e.y - s.y;
- n++;
+ //n++;
p = CRT_ADDR_POS (&e);
while (n--)
{
- memcpy (&c->screen[p], &c->screen[p - CRT_COLS], l);
p -= CRT_COLS;
+ memcpy (&c->screen[p], &c->screen[p - CRT_COLS], l);
}
e.y = s.y;