mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-25 19:56:30 +00:00
Fix typo (#23232)
This commit is contained in:
parent
39494f1287
commit
0cb6a8ba24
@ -2054,7 +2054,7 @@ uint16_t fadeGamma(uint32_t channel, uint16_t v) {
|
|||||||
}
|
}
|
||||||
uint16_t fadeGammaReverse(uint32_t channel, uint16_t vg) {
|
uint16_t fadeGammaReverse(uint32_t channel, uint16_t vg) {
|
||||||
if (isChannelGammaCorrected(channel)) {
|
if (isChannelGammaCorrected(channel)) {
|
||||||
return leddGammaReverseFast(vg);
|
return ledGammaReverseFast(vg);
|
||||||
} else {
|
} else {
|
||||||
return vg;
|
return vg;
|
||||||
}
|
}
|
||||||
|
@ -365,6 +365,6 @@ uint16_t ledGammaFast(uint16_t v) {
|
|||||||
return ledGamma_internal(v, gamma_table_fast);
|
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);
|
return ledGammaReverse_internal(vg, gamma_table_fast);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user