Browse Source

Help syntax highlighting (Sublime, et. al.)

Scott Lahteine 6 years ago
parent
commit
9da02d2114
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      Marlin/src/module/planner.cpp

+ 2
- 0
Marlin/src/module/planner.cpp View File

2768
 void Planner::set_position_mm(const float &rx, const float &ry, const float &rz, const float &e) {
2768
 void Planner::set_position_mm(const float &rx, const float &ry, const float &rz, const float &e) {
2769
   float raw[XYZE] = { rx, ry, rz, e };
2769
   float raw[XYZE] = { rx, ry, rz, e };
2770
   #if HAS_POSITION_MODIFIERS
2770
   #if HAS_POSITION_MODIFIERS
2771
+  {
2771
     apply_modifiers(raw
2772
     apply_modifiers(raw
2772
       #if HAS_LEVELING
2773
       #if HAS_LEVELING
2773
         , true
2774
         , true
2774
       #endif
2775
       #endif
2775
     );
2776
     );
2777
+  }
2776
   #endif
2778
   #endif
2777
   #if IS_KINEMATIC
2779
   #if IS_KINEMATIC
2778
     position_cart[X_AXIS] = rx;
2780
     position_cart[X_AXIS] = rx;

Loading…
Cancel
Save