From 2d92f333f5f3f004c9007e2428c2877087797512 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 15 Nov 2018 14:06:39 -0600 Subject: [PATCH] Fix GcodeSuite::T active_extruder reference --- Marlin/src/gcode/control/T.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/control/T.cpp b/Marlin/src/gcode/control/T.cpp index 58febbd6d..ba6db2244 100644 --- a/Marlin/src/gcode/control/T.cpp +++ b/Marlin/src/gcode/control/T.cpp @@ -23,7 +23,7 @@ #include "../gcode.h" #include "../../module/tool_change.h" -#if ENABLED(DEBUG_LEVELING_FEATURE) || HOTENDS > 1 +#if ENABLED(DEBUG_LEVELING_FEATURE) || EXTRUDERS > 1 #include "../../module/motion.h" #endif