summaryrefslogtreecommitdiff
path: root/firmware/pcm_record.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/pcm_record.c')
-rw-r--r--firmware/pcm_record.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/pcm_record.c b/firmware/pcm_record.c
index b167d6a562..1200669456 100644
--- a/firmware/pcm_record.c
+++ b/firmware/pcm_record.c
@@ -208,8 +208,7 @@ unsigned long audio_num_recorded_bytes(void)
208 */ 208 */
209void audio_set_recording_options(int frequency, int quality, 209void audio_set_recording_options(int frequency, int quality,
210 int source, int channel_mode, 210 int source, int channel_mode,
211 bool editable, int prerecord_time, 211 bool editable, int prerecord_time)
212 bool monitor)
213{ 212{
214 /* TODO: */ 213 /* TODO: */
215 (void)frequency; 214 (void)frequency;
@@ -233,7 +232,7 @@ void audio_set_recording_options(int frequency, int quality,
233 break; 232 break;
234 } 233 }
235 234
236 uda1380_set_monitor(monitor); 235 uda1380_set_monitor(true);
237} 236}
238 237
239 238