summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 996e825e13..429141f759 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -535,11 +535,10 @@ void codec_configure_callback(int setting, void *value)
535 ci.audiobuffer_insert = pcm_insert_buffer; 535 ci.audiobuffer_insert = pcm_insert_buffer;
536 break ; 536 break ;
537 537
538#ifndef SIMULATOR
539 default: 538 default:
540 if (!dsp_configure(setting, value)) 539 if (!dsp_configure(setting, value)) {
541 logf("Illegal key: %d", setting); 540 logf("Illegal key: %d", setting);
542#endif 541 }
543 } 542 }
544} 543}
545 544