From 52a63108e8d1f9cad01957df23a227d48daa6e00 Mon Sep 17 00:00:00 2001 From: c vw Date: Fri, 26 Nov 2021 16:24:47 +0100 Subject: [PATCH] synchronized upon merging --- actions.c | 10 +++++----- audio.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/actions.c b/actions.c index 0f8c34b..37d7b31 100644 --- a/actions.c +++ b/actions.c @@ -980,11 +980,11 @@ int process_action(void *data) { break; case SAT: if(a->mode==PRESSED) { - if(sat_mode==SAT_MODE) { - sat_mode=SAT_NONE; - } else { - sat_mode=SAT_MODE; - } + if(sat_mode==SAT_MODE) { + sat_mode=SAT_NONE; + } else { + sat_mode=SAT_MODE; + } g_idle_add(ext_vfo_update, NULL); } break; diff --git a/audio.h b/audio.h index 5f6832d..13eca07 100644 --- a/audio.h +++ b/audio.h @@ -42,7 +42,7 @@ extern void audio_close_input(); extern int audio_open_output(RECEIVER *rx); extern void audio_close_output(RECEIVER *rx); extern int audio_write(RECEIVER *rx,float left_sample,float right_sample); -extern int cw_audio_write(RECEIVER *rx, float sample); +extern int cw_audio_write(RECEIVER *rx,float sample); extern void audio_get_cards(); char * audio_get_error_string(int err); float audio_get_next_mic_sample(); -- 2.45.2