Commit b61ba608 authored by MagoKimbra's avatar MagoKimbra

Update vector_3.cpp

parent ecadaf77
......@@ -119,16 +119,16 @@ matrix_3x3 matrix_3x3::transpose(matrix_3x3 original) {
void matrix_3x3::debug(const char title[]) {
ECHO_LV(DB, title);
int count = 0;
for(int i=0; i<3; i++) {
for(int j=0; j<3; j++) {
for(int i = 0; i < 3; i++) {
ECHO_S(DB);
for(int j = 0; j < 3; j++) {
if (matrix[count] >= 0.0) ECHO_C('+');
ECHO_V(matrix[count], 6);
ECHO_C(' ');
count++;
}
ECHO_LM(DB, " ");
ECHO_E;
}
}
#endif // ENABLE_AUTO_BED_LEVELING
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment