1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Giacomelli 2008-09-22 15:27:27 +00:00
parent 3dedcfc454
commit 0097198586

View file

@ -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];