use lcd_puts_P instead of lcd_printf_P

Change in memory:
Flash: -8 bytes
SRAM: 0 bytes
This commit is contained in:
Guðni Már Gilbert 2023-03-20 18:53:30 +00:00
parent 66bb9bcfe4
commit 69b4696114
1 changed files with 1 additions and 1 deletions

View File

@ -5922,7 +5922,7 @@ void lcd_belttest()
uint16_t X = eeprom_read_word((uint16_t*)(EEPROM_BELTSTATUS_X));
uint16_t Y = eeprom_read_word((uint16_t*)(EEPROM_BELTSTATUS_Y));
lcd_printf_P(_T(MSG_CHECKING_X));
lcd_puts_P(_T(MSG_CHECKING_X));
lcd_set_cursor(0,1), lcd_printf_P(PSTR("X: %u -> ..."),X);
KEEPALIVE_STATE(IN_HANDLER);