From 92b89368f1e5de038ac44bb75d46abd6a598fcf7 Mon Sep 17 00:00:00 2001
From: Alessandro Simovic <alessandro@yuneecresearch.com>
Date: Tue, 20 Mar 2018 11:03:11 +0100
Subject: [PATCH] libtunes: fixed playback of string melodies

---
 src/lib/tunes/tunes.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/lib/tunes/tunes.cpp b/src/lib/tunes/tunes.cpp
index a250fc9f39..8fafc16cd5 100644
--- a/src/lib/tunes/tunes.cpp
+++ b/src/lib/tunes/tunes.cpp
@@ -131,14 +131,15 @@ int Tunes::set_control(const tune_control_s &tune_control)
 	return OK;
 }
 
-void Tunes::set_string(const char *const string)
+void Tunes::set_string(const char *const string, uint8_t strength)
 {
-	// Only play new tune if current tune is a repeated one nothing is being played
-	if (_repeat || _tune == nullptr) {
+	// Only play new tune if nothing is being played currently
+	if (_tune == nullptr) {
 		// set tune string the first time
 		_tune = string;
 		_tune_start_ptr = string;
 		_next = _tune;
+		_strength = strength;
 	}
 }
 
-- 
GitLab