Browse Source

Fix compile error with Z_PROBE_END_SCRIPT (#14447)

Ludy 6 years ago
parent
commit
0ca64a0ea3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

+ 1
- 1
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp View File

@@ -679,7 +679,7 @@
679 679
       if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
680 680
       if (probe_deployed) {
681 681
         planner.synchronize();
682
-        process_subcommands_now_P(PSTR(Z_PROBE_END_SCRIPT));
682
+        gcode.process_subcommands_now_P(PSTR(Z_PROBE_END_SCRIPT));
683 683
       }
684 684
     #endif
685 685
 

Loading…
Cancel
Save