Browse Source

Fix #4614: currentScreen only defined with ULTIPANEL

pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
132322e4d9
  1. 12
      Marlin/ultralcd.cpp

12
Marlin/ultralcd.cpp

@ -2686,6 +2686,12 @@ void lcd_update() {
break;
}
#if ENABLED(ULTIPANEL)
#define CURRENTSCREEN() (*currentScreen)()
#else
#define CURRENTSCREEN() lcd_status_screen()
#endif
#if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
static int8_t dot_color = 0;
dot_color = 1 - dot_color;
@ -2696,12 +2702,10 @@ void lcd_update() {
u8g.setColorIndex(dot_color); // Set color for the alive dot
u8g.drawPixel(127, 63); // draw alive dot
u8g.setColorIndex(1); // black on white
(*currentScreen)();
CURRENTSCREEN();
} while (u8g.nextPage());
#elif ENABLED(ULTIPANEL)
(*currentScreen)();
#else
lcd_status_screen();
CURRENTSCREEN();
#endif
}

Loading…
Cancel
Save