Fix missing include & condition (#14682)

This commit is contained in:
InsanityAutomation 2019-07-20 02:55:34 -04:00 committed by Scott Lahteine
parent 977cfa4494
commit 9cd66f6f77
2 changed files with 5 additions and 1 deletions

View file

@ -676,7 +676,7 @@ namespace ExtUI {
UNUSED(mm);
#endif
#if EXTRUDERS > 1
#if EXTRUDERS > 1 && HAS_HOTEND_OFFSET
/**
* When linked_nozzles is false, as an axis is babystepped
* adjust the hotend offsets so that the other nozzles are

View file

@ -81,6 +81,10 @@
#include "../lcd/ultralcd.h"
#endif
#if ENABLED(ADVANCED_PAUSE_FEATURE)
#include "../feature/pause.h"
#endif
#if DO_SWITCH_EXTRUDER
#if EXTRUDERS > 3