Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kriegsman <kriegsman@tr.org>2015-07-30 22:09:48 +0300
committerMark Kriegsman <kriegsman@tr.org>2015-07-30 22:09:48 +0300
commitf1c00b62fff0bbf506f43590e6bdc1f638a972d5 (patch)
tree725a1be254f39f6ed33e9367d8b819f8163c7694 /colorutils.cpp
parent6cbe63e79b8f0dd211c2a28dc33db65afbc9066c (diff)
Changing some stray 'byte's to 'uint8_t's
Diffstat (limited to 'colorutils.cpp')
-rw-r--r--colorutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/colorutils.cpp b/colorutils.cpp
index 4535657a..23358cef 100644
--- a/colorutils.cpp
+++ b/colorutils.cpp
@@ -736,7 +736,7 @@ void nblendPaletteTowardPalette( CRGBPalette16& current, CRGBPalette16& target,
p2 = (uint8_t*)target.entries;
const uint8_t totalChannels = sizeof(CRGBPalette16);
- for( byte i = 0; i < totalChannels; i++) {
+ for( uint8_t i = 0; i < totalChannels; i++) {
// if the values are equal, no changes are needed
if( p1[i] == p2[i] ) { continue; }