소스 검색

Make centering of STRING_SPLASH work

AnHardt 10 년 전
부모
커밋
0d219b3e14
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/dogm_lcd_implementation.h

+ 1
- 1
Marlin/dogm_lcd_implementation.h 파일 보기

@@ -118,7 +118,7 @@ static void lcd_implementation_init()
118 118
 
119 119
   // Show splashscreen
120 120
   int off = (u8g.getWidth() - START_BMPWIDTH) / 2;
121
-  int txtX = (u8g.getWidth() - sizeof(STRING_SPLASH) - 1) / 2;
121
+  int txtX = (u8g.getWidth() - (sizeof(STRING_SPLASH) - 1)*5) / 2; // 5 is fontwidth in pixel
122 122
   int txtY = u8g.getHeight() - 10;
123 123
 	u8g.firstPage();
124 124
 	do {

Loading…
취소
저장