Browse Source

Fix: removed wrong ; at end of define

Maik Stohn 12 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
 	u8g.setRot90();	// Rotate screen by 90°
101
 	u8g.setRot90();	// Rotate screen by 90°
102
 #endif
102
 #endif
103
 
103
 
104
-#ifdef LCD_SCREEN_ROT_180;
104
+#ifdef LCD_SCREEN_ROT_180
105
 	u8g.setRot180();	// Rotate screen by 180°
105
 	u8g.setRot180();	// Rotate screen by 180°
106
 #endif
106
 #endif
107
 
107
 
108
-#ifdef LCD_SCREEN_ROT_270;
108
+#ifdef LCD_SCREEN_ROT_270
109
 	u8g.setRot270();	// Rotate screen by 270°
109
 	u8g.setRot270();	// Rotate screen by 270°
110
 #endif
110
 #endif
111
 
111
 

Loading…
Cancel
Save