aboutsummaryrefslogtreecommitdiffstats
path: root/src/crt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crt.c')
-rw-r--r--src/crt.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/crt.c b/src/crt.c
index 5f5656b..87b814d 100644
--- a/src/crt.c
+++ b/src/crt.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.11 2008/02/23 11:48:37 james
+ * *** empty log message ***
+ *
* Revision 1.10 2008/02/22 17:07:00 james
* *** empty log message ***
*
@@ -45,7 +48,7 @@ static char rcsid[] = "$Id$";
#include "project.h"
void
-crt_erase (CRT * c, CRT_Pos s, CRT_Pos e, int ea,int color)
+crt_erase (CRT * c, CRT_Pos s, CRT_Pos e, int ea, int color)
{
CRT_CA *ps = &c->screen[CRT_ADDR_POS (&s)];
CRT_CA *pe = &c->screen[CRT_ADDR_POS (&e)];
@@ -75,7 +78,7 @@ crt_cls (CRT * c)
}
void
-crt_scroll_up (CRT * c, CRT_Pos s, CRT_Pos e, int ea,int color)
+crt_scroll_up (CRT * c, CRT_Pos s, CRT_Pos e, int ea, int color)
{
int l, n;
int p;
@@ -104,12 +107,12 @@ crt_scroll_up (CRT * c, CRT_Pos s, CRT_Pos e, int ea,int color)
}
s.y = e.y;
- crt_erase (c, s, e, ea,color);
+ crt_erase (c, s, e, ea, color);
}
void
-crt_scroll_down (CRT * c, CRT_Pos s, CRT_Pos e, int ea,int color)
+crt_scroll_down (CRT * c, CRT_Pos s, CRT_Pos e, int ea, int color)
{
int l, n;
int p;
@@ -137,7 +140,7 @@ crt_scroll_down (CRT * c, CRT_Pos s, CRT_Pos e, int ea,int color)
}
e.y = s.y;
- crt_erase (c, s, e, ea,color);
+ crt_erase (c, s, e, ea, color);
}