Fix corrupted chars in "Engaging Idler" message
This commit is contained in:
parent
bac3168ca4
commit
0889109760
|
|
@ -15,7 +15,7 @@ const char * const ProgressCodeToText(uint16_t pc); // we may join progress conv
|
||||||
|
|
||||||
void BeginReport(CommandInProgress cip, uint16_t ec) {
|
void BeginReport(CommandInProgress cip, uint16_t ec) {
|
||||||
custom_message_type = CustomMsg::MMUProgress;
|
custom_message_type = CustomMsg::MMUProgress;
|
||||||
lcd_setstatuspgm( ProgressCodeToText(ec) );
|
lcd_setstatuspgm( _T(ProgressCodeToText(ec)) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void EndReport(CommandInProgress cip, uint16_t ec) {
|
void EndReport(CommandInProgress cip, uint16_t ec) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue