Fixed Musepack seeking, which was outright crashing since the last MPCDec update

CQTexperiment
Chris Moeller 2015-02-07 22:24:42 -08:00
parent f98f9c7694
commit ff4b8dd912
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ mpc_bool_t CanSeekProc(mpc_reader *p_reader)
- (long)seek:(long)sample
{
mpc_demux_seek_sample(&demux, sample);
mpc_demux_seek_sample(demux, sample);
return sample;
}