Skip to content

Commit 651f15f

Browse files
committed
🎨 Cosmetic cleanup
1 parent ef41c1f commit 651f15f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/gcode/bedlevel/G26.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ typedef struct {
291291
if (p2.x < 0 || p2.x >= (GRID_MAX_POINTS_X)) return;
292292
if (p2.y < 0 || p2.y >= (GRID_MAX_POINTS_Y)) return;
293293

294-
if(circle_flags.marked(p1.x, p1.y) && circle_flags.marked(p2.x, p2.y)) {
294+
if (circle_flags.marked(p1.x, p1.y) && circle_flags.marked(p2.x, p2.y)) {
295295
xyz_pos_t s, e;
296296
s.x = _GET_MESH_X(p1.x) + (INTERSECTION_CIRCLE_RADIUS - (CROSSHAIRS_SIZE)) * dx;
297297
e.x = _GET_MESH_X(p2.x) - (INTERSECTION_CIRCLE_RADIUS - (CROSSHAIRS_SIZE)) * dx;

0 commit comments

Comments
 (0)