diff --git a/Core/HLE/sceMp3.cpp b/Core/HLE/sceMp3.cpp index d44c1958da..70885a9963 100644 --- a/Core/HLE/sceMp3.cpp +++ b/Core/HLE/sceMp3.cpp @@ -705,13 +705,13 @@ u32 sceMp3ResetPlayPositionByFrame(u32 mp3, int position) { return 0; } -u32 sceMp3LowLevelInit() { - ERROR_LOG_REPORT(ME, "UNIMPL sceMp3LowLevelInit(...)"); +u32 sceMp3LowLevelInit(u32 mp3, u32 paramsAddr) { + ERROR_LOG_REPORT(ME, "UNIMPL sceMp3LowLevelInit(%08x, %08x)", mp3, paramsAddr); return 0; } -u32 sceMp3LowLevelDecode() { - ERROR_LOG_REPORT(ME, "UNIMPL sceMp3LowLevelDecode(...)"); +u32 sceMp3LowLevelDecode(u32 mp3, u32 sourceAddr, u32 sourceBytesConsumedAddr, u32 samplesAddr, u32 sampleBytesAddr) { + ERROR_LOG_REPORT(ME, "UNIMPL sceMp3LowLevelDecode(%08x, %08x, %08x, %08x, %08x)", mp3, sourceAddr, sourceBytesConsumedAddr, samplesAddr, sampleBytesAddr); return 0; } @@ -738,8 +738,8 @@ const HLEFunction sceMp3[] = { {0xAE6D2027,WrapU_U,"sceMp3GetMPEGVersion"}, {0x3548AEC8,WrapU_U,"sceMp3GetFrameNum"}, {0x0840e808,WrapU_UI,"sceMp3ResetPlayPositionByFrame"}, - {0x1b839b83,WrapU_V,"sceMp3LowLevelInit"}, - {0xe3ee2c81,WrapU_V,"sceMp3LowLevelDecode"} + {0x1b839b83,WrapU_UU,"sceMp3LowLevelInit"}, + {0xe3ee2c81,WrapU_UUUUU,"sceMp3LowLevelDecode"} }; void Register_sceMp3() {