summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/radio.c')
-rw-r--r--apps/recorder/radio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 7513a26a1f..b95bffe696 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -582,13 +582,13 @@ int radio_screen(void)
582#ifndef SIMULATOR 582#ifndef SIMULATOR
583 if(audio_status() == AUDIO_STATUS_RECORD) 583 if(audio_status() == AUDIO_STATUS_RECORD)
584 { 584 {
585 rec_new_file(); 585 rec_command(RECORDING_CMD_START_NEWFILE);
586 update_screen = true; 586 update_screen = true;
587 } 587 }
588 else 588 else
589 { 589 {
590 have_recorded = true; 590 have_recorded = true;
591 rec_record(); 591 rec_command(RECORDING_CMD_START);
592 update_screen = true; 592 update_screen = true;
593 } 593 }
594#endif /* SIMULATOR */ 594#endif /* SIMULATOR */