From cd33b5b0620640d6f91496aa0d5a4d99e5f20644 Mon Sep 17 00:00:00 2001
From: Bo Herrmannsen <bo.herrmannsen@gmail.com>
Date: Fri, 9 Jan 2015 15:44:47 +0100
Subject: [PATCH] changed logo and ver info

logo is now 110 pixels wide and starts 9 pixels in from top left corner and also 9 pixels down from same corner... this will give a 9 pixel border all way round

ver info is placed centered and there is a 9 pixel from bottom of display to ver info
---
 Marlin/dogm_lcd_implementation.h | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Marlin/dogm_lcd_implementation.h b/Marlin/dogm_lcd_implementation.h
index 79fecb7ea2..13ecf08333 100644
--- a/Marlin/dogm_lcd_implementation.h
+++ b/Marlin/dogm_lcd_implementation.h
@@ -121,14 +121,13 @@ static void lcd_implementation_init()
 	u8g.firstPage();
 	do {
 			// RepRap init bmp
-			u8g.drawBitmapP(0,0,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
+			u8g.drawBitmapP(9,9,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
 			// Welcome message
 			
-			u8g.setFont(u8g_font_6x10_marlin);
-			u8g.drawStr(64,28,"     MARLIN");
+			
 			
 			u8g.setFont(u8g_font_5x8);
-			u8g.drawStr(64,48,"     V1.0.2");
+			u8g.drawStr(49,50,"     V1.0.2");
 			
 	   } while( u8g.nextPage() );
 }
-- 
GitLab