Browse Source

Fix missing tmp_extruder -> target_extruder

Scott Lahteine 10 years ago
parent
commit
8680b515b0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

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

Loading…
Cancel
Save