From b1d30398e622d17d2c48f72a1919c7e3be7f19fa Mon Sep 17 00:00:00 2001 From: GuruSR Date: Sat, 27 Nov 2021 09:33:02 -0500 Subject: [PATCH] Version 1.3.3 Tone Repeats bug fix. --- src/Watchy_GSR.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Watchy_GSR.cpp b/src/Watchy_GSR.cpp index cd696fc..7793db8 100644 --- a/src/Watchy_GSR.cpp +++ b/src/Watchy_GSR.cpp @@ -1446,7 +1446,7 @@ void WatchyGSR::handleButtonPress(uint8_t Pressed){ SetTurbo(); } }else if (Menu.Item == MENU_TONES){ // Tones. - Options.MasterRepeats = clamp(Options.MasterRepeats + 1, (WatchTime.DeadRTC ? 4 : 0), 4); + Options.MasterRepeats = roller(Options.MasterRepeats + 1, (WatchTime.DeadRTC ? 4 : 0), 4); Alarms_Repeats[0] = Options.MasterRepeats; Alarms_Repeats[1] = Options.MasterRepeats; Alarms_Repeats[2] = Options.MasterRepeats;