Tweak to manual move eindex arg
This commit is contained in:
parent
98d48fc731
commit
1913c37a91
|
@ -2902,7 +2902,7 @@ void kill_screen(const char* lcd_msg) {
|
||||||
*/
|
*/
|
||||||
inline void manual_move_to_current(AxisEnum axis
|
inline void manual_move_to_current(AxisEnum axis
|
||||||
#if E_MANUAL > 1
|
#if E_MANUAL > 1
|
||||||
, int8_t eindex=-1
|
, const int8_t eindex=-1
|
||||||
#endif
|
#endif
|
||||||
) {
|
) {
|
||||||
#if ENABLED(DUAL_X_CARRIAGE) || E_MANUAL > 1
|
#if ENABLED(DUAL_X_CARRIAGE) || E_MANUAL > 1
|
||||||
|
@ -3002,7 +3002,7 @@ void kill_screen(const char* lcd_msg) {
|
||||||
void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
|
void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
|
||||||
void _lcd_move_e(
|
void _lcd_move_e(
|
||||||
#if E_MANUAL > 1
|
#if E_MANUAL > 1
|
||||||
int8_t eindex=-1
|
const int8_t eindex=-1
|
||||||
#endif
|
#endif
|
||||||
) {
|
) {
|
||||||
if (use_click()) { return lcd_goto_previous_menu(); }
|
if (use_click()) { return lcd_goto_previous_menu(); }
|
||||||
|
|
Loading…
Reference in a new issue