Tweak to manual move eindex arg

This commit is contained in:
Scott Lahteine 2018-03-08 00:48:57 -06:00
parent 98d48fc731
commit 1913c37a91

View File

@ -2902,7 +2902,7 @@ void kill_screen(const char* lcd_msg) {
*/
inline void manual_move_to_current(AxisEnum axis
#if E_MANUAL > 1
, int8_t eindex=-1
, const int8_t eindex=-1
#endif
) {
#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_e(
#if E_MANUAL > 1
int8_t eindex=-1
const int8_t eindex=-1
#endif
) {
if (use_click()) { return lcd_goto_previous_menu(); }