Fix mp3 bit rate info in sceMp3GetBitRate().

This commit is contained in:
Unknown W. Brackets 2013-09-01 17:18:55 -07:00
parent fe1f4d53c6
commit 2a478c26ca

@ -380,7 +380,7 @@ int sceMp3Init(u32 mp3) {
ctx->mp3SamplingRate = ctx->decoder_context->sample_rate;
ctx->mp3Channels = ctx->decoder_context->channels;
ctx->mp3Bitrate = ctx->decoder_context->bit_rate;
ctx->mp3Bitrate = ctx->decoder_context->bit_rate / 1000;
if (!ctx->resampler_context) {
ERROR_LOG(HLE, "Could not allocate resampler context %d", ret);