Browse Source

Fix MBL compile error

Scott Lahteine 9 years ago
parent
commit
79633a74ab
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -4520,7 +4520,7 @@ inline void gcode_M410() { quickStop(); }
4520 4520
       err = true;
4521 4521
     }
4522 4522
 
4523
-    if (!err) mbl.set_z(select_x_index(x), select_y_index(y), z);
4523
+    if (!err) mbl.set_z(mbl.select_x_index(x), mbl.select_y_index(y), z);
4524 4524
   }
4525 4525
 
4526 4526
 #endif

Loading…
Cancel
Save