From fc338d9b30500f311d9555545477e4ba1775b403 Mon Sep 17 00:00:00 2001 From: james <> Date: Sat, 23 Feb 2008 11:49:23 +0000 Subject: *** empty log message *** --- src/crt.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/crt.c') 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); } -- cgit v1.2.3