Added driver for SED1520 graphic LCDs, STV5730 TV Output plus a small fix for render.c for bigger display sizes

This commit is contained in:
afrob
2001-09-22 11:45:12 +00:00
parent 968a733d88
commit 2e654fd333
10 changed files with 2470 additions and 2 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ draw_screen (screen * s, int timer)
lcd.output (output_state);
// Draw a frame...
draw_frame (s->widgets, 'v', 0, 0, lcd.wid, lcd.hgt, s->wid, s->hgt, s->duration / s->hgt, timer);
draw_frame (s->widgets, 'v', 0, 0, lcd.wid, lcd.hgt, s->wid, s->hgt, (((s->duration / s->hgt) < 1) ? 1 : (s->duration / s->hgt)), timer);
//debug("draw_screen done\n");