summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/screens.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 1dec09a8b6..2e120de4ab 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -575,8 +575,8 @@ void splash(int ticks, /* how long */
575 } 575 }
576 else { 576 else {
577 lcd_clearrect(0, y-2, LCD_WIDTH, LCD_HEIGHT-y*2+4); 577 lcd_clearrect(0, y-2, LCD_WIDTH, LCD_HEIGHT-y*2+4);
578 lcd_drawline(0, y-2, LCD_WIDTH, y-2); 578 lcd_drawline(0, y-2, LCD_WIDTH-1, y-2);
579 lcd_drawline(0, LCD_HEIGHT-y+2, LCD_WIDTH, LCD_HEIGHT-y+2); 579 lcd_drawline(0, LCD_HEIGHT-y+2, LCD_WIDTH-1, LCD_HEIGHT-y+2);
580 } 580 }
581 } 581 }
582 else 582 else