Ver código fonte

Fix missing tmp_extruder -> target_extruder

Scott Lahteine 9 anos atrás
pai
commit
8680b515b0
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp Ver arquivo

@@ -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:");

Carregando…
Cancelar
Salvar