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>2015-01-14 04:13:43 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-01-14 04:13:43 +0300
commit83a6d769a52a1460d0d992f2ec6b62b7d8549bbc (patch)
tree6ab95485e132237b7bc4e3e687b1717829be4983
parent92082af72db1f3c278b4b12f6bb38a951aaa9e07 (diff)
parent46f0405a5263c4a2be4054676ce345fa61642807 (diff)
Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1
-rw-r--r--lib8tion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib8tion.h b/lib8tion.h
index a32e6b49..638cf18a 100644
--- a/lib8tion.h
+++ b/lib8tion.h
@@ -1896,7 +1896,7 @@ LIB8STATIC uint16_t beat16( accum88 beats_per_minute, uint32_t timebase = 0)
{
// Convert simple 8-bit BPM's to full Q8.8 accum88's if needed
if( beats_per_minute < 256) beats_per_minute <<= 8;
- return beat88(beats_per_minute);
+ return beat88(beats_per_minute, timebase);
}
// beat8 generates an 8-bit 'sawtooth' wave at a given BPM