Merge pull request #48 from ohmytime/fix-offset-reference-error

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-06-24 17:47:37 +02:00
committed by GitHub
+3 -5
View File
@@ -3243,10 +3243,9 @@ void ShowStereoStatus() {
void ShowOffset() {
if (OStatus != OStatusold) {
if (millis() >= offsetupdatetimer + TIMER_BW_TIMER) {
if (millis() >= offsetupdatetimer + TIMER_OFFSET_TIMER) {
offsetupdatetimer = millis();
}
else {
} else {
return;
}
@@ -3346,8 +3345,7 @@ void ShowOffset() {
void ShowBW() {
if (millis() >= bwupdatetimer + TIMER_BW_TIMER) {
bwupdatetimer = millis();
}
else {
} else {
return;
}