missing enable for M605 for duplication mode

I believe gcode_M605 will not be called when using DUAL_NOZZLE_DUPLICATION_MODE without this change.
This commit is contained in:
cbusillo 2017-05-21 13:54:20 -04:00 committed by GitHub
parent a83f6db679
commit 3b4116e73b

View file

@ -10676,7 +10676,7 @@ void process_next_command() {
break;
#endif // FILAMENT_CHANGE_FEATURE
#if ENABLED(DUAL_X_CARRIAGE)
#if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
case 605: // M605: Set Dual X Carriage movement mode
gcode_M605();
break;