Browse Source

Update vector_3.cpp

Changed AUTO_BED_LEVEL to AUTO_BED_COMPENSATION
John Davis 10 years ago
parent
commit
825c46024d
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/vector_3.cpp

+ 3
- 3
Marlin/vector_3.cpp View File

@@ -1,5 +1,5 @@
1 1
 /*
2
-  vector_3.cpp - Vector library for bed leveling
2
+  vector_3.cpp - Vector library for bed compensation
3 3
   Copyright (c) 2012 Lars Brubaker.  All right reserved.
4 4
 
5 5
   This library is free software; you can redistribute it and/or
@@ -19,7 +19,7 @@
19 19
 #include <math.h>
20 20
 #include "Marlin.h"
21 21
 
22
-#ifdef ENABLE_AUTO_BED_LEVELING
22
+#ifdef ENABLE_AUTO_BED_COMPENSATION
23 23
 #include "vector_3.h"
24 24
 
25 25
 vector_3::vector_3() : x(0), y(0), z(0) { }
@@ -163,5 +163,5 @@ void matrix_3x3::debug(char* title)
163 163
 	}
164 164
 }
165 165
 
166
-#endif // #ifdef ENABLE_AUTO_BED_LEVELING
166
+#endif // #ifdef ENABLE_AUTO_BED_COMPENSATION
167 167
 

Loading…
Cancel
Save