Skip to content

Commit

Permalink
Update vector_3.cpp
Browse files Browse the repository at this point in the history
Changed AUTO_BED_LEVEL to AUTO_BED_COMPENSATION
  • Loading branch information
ei8htohms committed Dec 19, 2014
1 parent cfe80e1 commit 825c460
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/vector_3.cpp
@@ -1,5 +1,5 @@
/*
vector_3.cpp - Vector library for bed leveling
vector_3.cpp - Vector library for bed compensation
Copyright (c) 2012 Lars Brubaker. All right reserved.
This library is free software; you can redistribute it and/or
Expand All @@ -19,7 +19,7 @@
#include <math.h>
#include "Marlin.h"

#ifdef ENABLE_AUTO_BED_LEVELING
#ifdef ENABLE_AUTO_BED_COMPENSATION
#include "vector_3.h"

vector_3::vector_3() : x(0), y(0), z(0) { }
Expand Down Expand Up @@ -163,5 +163,5 @@ void matrix_3x3::debug(char* title)
}
}

#endif // #ifdef ENABLE_AUTO_BED_LEVELING
#endif // #ifdef ENABLE_AUTO_BED_COMPENSATION

0 comments on commit 825c460

Please sign in to comment.