This commit is contained in:
s-hadinger 2025-04-01 23:10:30 +02:00 committed by GitHub
parent 39494f1287
commit 0cb6a8ba24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2054,7 +2054,7 @@ uint16_t fadeGamma(uint32_t channel, uint16_t v) {
}
uint16_t fadeGammaReverse(uint32_t channel, uint16_t vg) {
if (isChannelGammaCorrected(channel)) {
return leddGammaReverseFast(vg);
return ledGammaReverseFast(vg);
} else {
return vg;
}

View File

@ -365,6 +365,6 @@ uint16_t ledGammaFast(uint16_t v) {
return ledGamma_internal(v, gamma_table_fast);
}
uint16_t leddGammaReverseFast(uint16_t vg) {
uint16_t ledGammaReverseFast(uint16_t vg) {
return ledGammaReverse_internal(vg, gamma_table_fast);
}