Browse Source

Fix: removed wrong ; at end of define

Maik Stohn 11 years ago
parent
commit
7ee70c2248
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/dogm_lcd_implementation.h

+ 2
- 2
Marlin/dogm_lcd_implementation.h View File

@@ -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
 

Loading…
Cancel
Save