Use lcd_printPGM_utf in more places

Fix #10256
This commit is contained in:
Scott Lahteine
2018-03-31 20:49:20 -05:00
parent 7d8a46519f
commit 31df43212c
2 changed files with 7 additions and 7 deletions

View File

@@ -412,9 +412,9 @@ void lcd_kill_screen() {
u8g.setPrintPos(0, h4 * 1);
lcd_print_utf(lcd_status_message);
u8g.setPrintPos(0, h4 * 2);
lcd_printPGM(PSTR(MSG_HALTED));
lcd_printPGM_utf(PSTR(MSG_HALTED));
u8g.setPrintPos(0, h4 * 3);
lcd_printPGM(PSTR(MSG_PLEASE_RESET));
lcd_printPGM_utf(PSTR(MSG_PLEASE_RESET));
} while (u8g.nextPage());
}
@@ -581,7 +581,7 @@ void lcd_implementation_clear() { } // Automatically cleared by Picture Loop
bool onpage = PAGE_CONTAINS(baseline + 1 - (DOG_CHAR_HEIGHT_EDIT), baseline);
if (onpage) {
u8g.setPrintPos(0, baseline);
lcd_printPGM(pstr);
lcd_printPGM_utf(pstr);
}
if (value != NULL) {