Repair a regression with the dummy get PTT functionality

pull/281/head
Bill Somerville 2020-05-26 13:02:34 +01:00
rodzic c34e139706
commit 2a3bb20672
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D864B06D1E81618F
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -535,6 +535,10 @@ static int dummy_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt)
*ptt = status ? RIG_PTT_ON : RIG_PTT_OFF;
}
else
{
*ptt = RIG_PTT_OFF;
}
break;
@ -545,6 +549,10 @@ static int dummy_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt)
*ptt = status ? RIG_PTT_ON : RIG_PTT_OFF;
}
else
{
*ptt = RIG_PTT_OFF;
}
break;