Explorar el Código

Cleanup MSG_MMU_POWER_FAILS

D.R.racer hace 2 años
padre
commit
aaebaf163f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Firmware/ultralcd.cpp

+ 1 - 1
Firmware/ultralcd.cpp

@@ -1159,7 +1159,7 @@ static void lcd_menu_fails_stats_mmu_total() {
         _T(MSG_TOTAL_FAILURES),
         _T(MSG_MMU_FAILS), clamp999( eeprom_read_word((uint16_t*)EEPROM_MMU_FAIL_TOT) ),
         _T(MSG_MMU_LOAD_FAILS), clamp999( eeprom_read_word((uint16_t*)EEPROM_MMU_LOAD_FAIL_TOT) ),
-        _i("MMU power fails"), clamp999( MMU2::mmu2.TMCFailures() ));
+        _T(MSG_MMU_POWER_FAILS), clamp999( MMU2::mmu2.TMCFailures() ));
     menu_back_if_clicked_fb();
 }