Move common strings (#20846)
This commit is contained in:
@ -867,7 +867,7 @@ static void moveAxis(AxisEnum axis, const int8_t direction) {
|
||||
NOMORE(ui.manual_move.offset, max - current_position[axis]);
|
||||
#else
|
||||
current_position[axis] += diff;
|
||||
const char *msg = PSTR(""); // clear the error
|
||||
const char *msg = NUL_STR; // clear the error
|
||||
if (direction < 0 && current_position[axis] < min) {
|
||||
current_position[axis] = min;
|
||||
msg = GET_TEXT(MSG_LCD_SOFT_ENDSTOPS);
|
||||
|
Reference in New Issue
Block a user