Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/mdev' into pinwheel2
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon502 committed Oct 20, 2024
2 parents 05a16aa + 54cc4ca commit d433c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/FX_fcn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ uint32_t __attribute__((hot)) Segment::getPixelColor(int i) const
return vW>vH ? getPixelColorXY(i, 0) : getPixelColorXY(0, i); // Corner and Arc
break;
}
float minradius = float(i) - .5f;
float minradius = float(i) - 0.1f;
const int minradius2 = roundf(minradius * minradius);
int startX, startY;
if (vW >= vH) {startX = vW - 1; startY = 1;} // Last Column
Expand Down

0 comments on commit d433c62

Please sign in to comment.