Fix corrupted chars in "Engaging Idler" message

This commit is contained in:
Guðni Már Gilbert 2022-08-13 07:26:48 +00:00 committed by D.R.racer
parent bac3168ca4
commit 0889109760
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const char * const ProgressCodeToText(uint16_t pc); // we may join progress conv
void BeginReport(CommandInProgress cip, uint16_t ec) {
custom_message_type = CustomMsg::MMUProgress;
lcd_setstatuspgm( ProgressCodeToText(ec) );
lcd_setstatuspgm( _T(ProgressCodeToText(ec)) );
}
void EndReport(CommandInProgress cip, uint16_t ec) {