Numerous (TINY) fixes: mostly unused variables...

This commit is contained in:
ddouthitt
2001-10-05 22:04:35 +00:00
parent 16cce2fe2d
commit ae18a158fc
8 changed files with 22 additions and 21 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ new_framebuf (struct lcd_logical_driver *driver, char *oldbuf) {
void
insert_str_framebuf (struct lcd_logical_driver *driver, int x, int y, char *string) {
int i;
//int i;
char buf[64];
char *pos;
@@ -93,7 +93,7 @@ insert_chr_framebuf (struct lcd_logical_driver *driver, int x, int y, char c) {
x--; y--;
if (x >= driver->wid) driver->wid;
if (x >= driver->wid) x = driver->wid;
if (x < 0) x = 0;
if (y >= driver->hgt) y = driver->hgt;