Skip to content

Commit

Permalink
rebase to main
Browse files Browse the repository at this point in the history
  • Loading branch information
scourge411 committed Feb 7, 2025
1 parent d621173 commit 4b5df2a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion wled00/FX.h
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,6 @@ typedef struct Segment {
inline void fill_solid(CRGB c) { fill(RGBW32(c.r,c.g,c.b,0)); }
#else
inline bool is2D() const { return false; }
inline int XY(int x, int y) const { return x; }
inline void setPixelColorXY(int x, int y, uint32_t c) { setPixelColor(x, c); }
inline void setPixelColorXY(unsigned x, unsigned y, uint32_t c) { setPixelColor(int(x), c); }
inline void setPixelColorXY(int x, int y, byte r, byte g, byte b, byte w = 0) { setPixelColor(x, RGBW32(r,g,b,w)); }
Expand Down

0 comments on commit 4b5df2a

Please sign in to comment.