Browse Source

Fix missing include & condition (#14682)

pull/1/head
InsanityAutomation 5 years ago
committed by Scott Lahteine
parent
commit
9cd66f6f77
  1. 2
      Marlin/src/lcd/extensible_ui/ui_api.cpp
  2. 4
      Marlin/src/module/tool_change.cpp

2
Marlin/src/lcd/extensible_ui/ui_api.cpp

@ -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

4
Marlin/src/module/tool_change.cpp

@ -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

Loading…
Cancel
Save