Skip to content

Commit 103e7db

Browse files
committed
post merge fix, build 2512291
1 parent 3785ae9 commit 103e7db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

wled00/FX_fcn.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,9 +1373,9 @@ uint8_t Segment::differs(Segment& b) const {
13731373
if (custom1 != b.custom1) d |= SEG_DIFFERS_FX;
13741374
if (custom2 != b.custom2) d |= SEG_DIFFERS_FX;
13751375
if (custom3 != b.custom3) d |= SEG_DIFFERS_FX;
1376-
if (a.check1 != b.check1) d |= SEG_DIFFERS_FX;
1377-
if (a.check2 != b.check2) d |= SEG_DIFFERS_FX;
1378-
if (a.check3 != b.check3) d |= SEG_DIFFERS_FX;
1376+
if (check1 != b.check1) d |= SEG_DIFFERS_FX;
1377+
if (check2 != b.check2) d |= SEG_DIFFERS_FX;
1378+
if (check3 != b.check3) d |= SEG_DIFFERS_FX;
13791379
if (startY != b.startY) d |= SEG_DIFFERS_BOUNDS;
13801380
if (stopY != b.stopY) d |= SEG_DIFFERS_BOUNDS;
13811381

wled00/wled.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
// version code in format yymmddb (b = daily build)
10-
#define VERSION 2512171
10+
#define VERSION 2512291
1111

1212
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
1313
#define _MoonModules_WLED_

0 commit comments

Comments
 (0)