summaryrefslogtreecommitdiffstats
path: root/src/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index 9ffa7d7..fed9127 100644
--- a/src/app.c
+++ b/src/app.c
@@ -96,7 +96,7 @@ void app_timer_event()
96 { 96 {
97 r = x; 97 r = x;
98 } 98 }
99 else if (x > MAXLED && x < (2*MAXLED)) 99 else if (x >= MAXLED && x < (2*MAXLED))
100 { 100 {
101 r = MAXLED - x; 101 r = MAXLED - x;
102 g = x - MAXLED; 102 g = x - MAXLED;