From 009719858678bef82bd834a6d9e0821c8d7c4ed6 Mon Sep 17 00:00:00 2001 From: Michael Giacomelli Date: Mon, 22 Sep 2008 15:27:27 +0000 Subject: Fix careless typo on my part that broke MP3 playback on Coldfire. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18564 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libmad/synth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/codecs/libmad/synth.c b/apps/codecs/libmad/synth.c index 769e1c11d3..bc7ac742fe 100644 --- a/apps/codecs/libmad/synth.c +++ b/apps/codecs/libmad/synth.c @@ -599,7 +599,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame, mad_fixed64hi_t hi0, hi1; for (ch = 0; ch < nch; ++ch) { - sbsample = &*frame->sbsample_prev[ch]; + sbsample = &(*frame->sbsample_prev)[ch]; filter = &synth->filter[ch]; phase = synth->phase; pcm = synth->pcm.samples[ch]; -- cgit v1.2.3