Fixed short_corner calculation.

This commit is contained in:
Fabian Schlenz 2021-01-10 16:28:08 +01:00
parent 7651e46ee0
commit 14f8e0fd3d
1 changed files with 2 additions and 2 deletions

View File

@ -84,10 +84,10 @@ void setup_layout() {
if (e2<0) e2+=CORNERS_PER_PART;
LOGln(" Mapping Corner #%d,%d with #%d,%d", n1->_number, edge, found->_number, e2);
n1->_corners[edge]->_short_neighbours.push_back(found->_corners[e]);
n1->_corners[edge]->_short_neighbours.push_back(found->_corners[e2]);
LOGln(" Mapping Corner #%d,%d with #%d,%d", n1->_number, e1, found->_number, e);
n1->_corners[e1]->_short_neighbours.push_back(found->_corners[e2]);
n1->_corners[e1]->_short_neighbours.push_back(found->_corners[e]);
} else {
LOGln(" No match.");
}