浏览代码

Fix: removed wrong ; at end of define

Maik Stohn 11 年前
父节点
当前提交
7ee70c2248
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      Marlin/dogm_lcd_implementation.h

+ 2
- 2
Marlin/dogm_lcd_implementation.h 查看文件

@@ -101,11 +101,11 @@ static void lcd_implementation_init()
101 101
 	u8g.setRot90();	// Rotate screen by 90°
102 102
 #endif
103 103
 
104
-#ifdef LCD_SCREEN_ROT_180;
104
+#ifdef LCD_SCREEN_ROT_180
105 105
 	u8g.setRot180();	// Rotate screen by 180°
106 106
 #endif
107 107
 
108
-#ifdef LCD_SCREEN_ROT_270;
108
+#ifdef LCD_SCREEN_ROT_270
109 109
 	u8g.setRot270();	// Rotate screen by 270°
110 110
 #endif
111 111
 

正在加载...
取消
保存