Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Jul 12, 2024
1 parent 7aca48f commit d0009e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/led-strip/ColorSpaceCalibration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void ColorSpaceCalibration::updateBrightnessComponents()

bool ColorSpaceCalibration::isBrightnessCorrectionEnabled() const
{
return _brightnessCompensation != 100 || _brightness != 100;
return _brightnessCompensation != 0 || _brightness != 100;
}

void ColorSpaceCalibration::getBrightnessComponents(uint8_t& rgb, uint8_t& cmy, uint8_t& w) const
Expand Down

0 comments on commit d0009e6

Please sign in to comment.