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:
authorDaniel Garcia <danielgarcia@gmail.com>2014-06-03 06:32:30 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-06-03 06:32:30 +0400
commit46f3806ef0ed8bac1378c2fab74d837cb5de60e9 (patch)
treec777c1f4e3a496af20b6f0a7b03c2e9411344291 /noise.cpp
parentd6b5f717981f3936a4d56375b06b21ad0f2e3556 (diff)
parent5abbf749036e0c684ab08e562c7485361dda3888 (diff)
fixing merge
Diffstat (limited to 'noise.cpp')
-rw-r--r--noise.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noise.cpp b/noise.cpp
index 341fc21a..7aa569c9 100644
--- a/noise.cpp
+++ b/noise.cpp
@@ -598,7 +598,7 @@ void fill_2dnoise16(CRGB *leds, int width, int height, bool serpentine,
CRGB led(CHSV(H[h1-i][w1-j],255,V[i][j]));
int pos = j;
- if(serpentine && (i &0x1)) {
+ if(serpentine && (i & 0x1)) {
pos = w1-j;
}