Add print at position shortcuts

This commit is contained in:
Scott Lahteine
2019-08-22 19:36:18 -05:00
parent 5c0e5c599f
commit 7924e0d819
10 changed files with 77 additions and 134 deletions

View File

@@ -48,10 +48,7 @@ void MarlinGame::draw_game_over() {
u8g.setColorIndex(0);
u8g.drawBox(lx - 1, ly - gohigh - 1, gowide + 2, gohigh + 2);
u8g.setColorIndex(1);
if (ui.get_blink()) {
lcd_moveto(lx, ly);
lcd_put_u8str_P(PSTR("GAME OVER"));
}
if (ui.get_blink()) lcd_put_u8str_P(lx, ly, PSTR("GAME OVER"));
}
}