Remove unused variable chars.
This commit is contained in:
parent
c95b463e0b
commit
cbf633cfd4
1 changed files with 1 additions and 3 deletions
|
@ -482,12 +482,10 @@ void lcdui_print_temp(char type, int val_current, int val_target)
|
|||
// Print Z-coordinate (8 chars total)
|
||||
void lcdui_print_Z_coord(void)
|
||||
{
|
||||
int chars = 8;
|
||||
if (custom_message_type == CUSTOM_MSG_TYPE_MESHBL)
|
||||
lcd_puts_P(_N("Z --- "));
|
||||
else
|
||||
chars = lcd_printf_P(_N("Z%6.2f "), current_position[Z_AXIS]);
|
||||
// lcd_space(8 - chars);
|
||||
lcd_printf_P(_N("Z%6.2f "), current_position[Z_AXIS]);
|
||||
}
|
||||
|
||||
#ifdef PLANNER_DIAGNOSTICS
|
||||
|
|
Loading…
Reference in a new issue