瀏覽代碼

Fix missing tmp_extruder -> target_extruder

Scott Lahteine 9 年之前
父節點
當前提交
8680b515b0
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp 查看文件

@@ -3059,9 +3059,9 @@ inline void gcode_M105() {
3059 3059
     SERIAL_PROTOCOLPGM("ok");
3060 3060
     #if HAS_TEMP_0
3061 3061
       SERIAL_PROTOCOLPGM(" T:");
3062
-      SERIAL_PROTOCOL_F(degHotend(tmp_extruder), 1);
3062
+      SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);
3063 3063
       SERIAL_PROTOCOLPGM(" /");
3064
-      SERIAL_PROTOCOL_F(degTargetHotend(tmp_extruder), 1);
3064
+      SERIAL_PROTOCOL_F(degTargetHotend(target_extruder), 1);
3065 3065
     #endif
3066 3066
     #if HAS_TEMP_BED
3067 3067
       SERIAL_PROTOCOLPGM(" B:");

Loading…
取消
儲存