Skip to content

Commit 474a995

Browse files
authored
Merge pull request #5031 from wled/add-check-diff
Add segment checkmarks to `differs()` check
2 parents f0f12e7 + 1da2692 commit 474a995

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

wled00/json.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ namespace {
5151
if (a.custom1 != b.custom1) d |= SEG_DIFFERS_FX;
5252
if (a.custom2 != b.custom2) d |= SEG_DIFFERS_FX;
5353
if (a.custom3 != b.custom3) d |= SEG_DIFFERS_FX;
54+
if (a.check1 != b.check1) d |= SEG_DIFFERS_FX;
55+
if (a.check2 != b.check2) d |= SEG_DIFFERS_FX;
56+
if (a.check3 != b.check3) d |= SEG_DIFFERS_FX;
5457
if (a.startY != b.startY) d |= SEG_DIFFERS_BOUNDS;
5558
if (a.stopY != b.stopY) d |= SEG_DIFFERS_BOUNDS;
5659

0 commit comments

Comments
 (0)