summaryrefslogtreecommitdiff
path: root/apps/plugins/oscilloscope.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/oscilloscope.c')
-rw-r--r--apps/plugins/oscilloscope.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index 07bf1da8bb..5eb43fae62 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -826,7 +826,8 @@ enum plugin_status plugin_start(const void* parameter)
826 left = rb->mas_codec_readreg(0xC); 826 left = rb->mas_codec_readreg(0xC);
827 right = rb->mas_codec_readreg(0xD); 827 right = rb->mas_codec_readreg(0xD);
828#elif (CONFIG_CODEC == SWCODEC) 828#elif (CONFIG_CODEC == SWCODEC)
829 rb->pcm_calculate_peaks(&left, &right); 829 rb->mixer_channel_calculate_peaks(PCM_MIXER_CHAN_PLAYBACK,
830 &left, &right);
830#endif 831#endif
831 if (osc.orientation == OSC_HORIZ) 832 if (osc.orientation == OSC_HORIZ)
832 anim_horizontal(left, right); 833 anim_horizontal(left, right);