mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix logging typo.
This commit is contained in:
parent
6b9930d4f2
commit
7b608b6946
1 changed files with 2 additions and 2 deletions
|
@ -571,11 +571,11 @@ u32 sceMpegQueryStreamSize(u32 bufferAddr, u32 sizeAddr)
|
|||
AnalyzeMpeg(bufferAddr, &ctx);
|
||||
|
||||
if (ctx.mpegMagic != PSMF_MAGIC) {
|
||||
ERROR_LOG(HLE, "sceMpegQueryStreamOffset: Bad PSMF magic");
|
||||
ERROR_LOG(HLE, "sceMpegQueryStreamSize: Bad PSMF magic");
|
||||
Memory::Write_U32(0, sizeAddr);
|
||||
return ERROR_MPEG_INVALID_VALUE;
|
||||
} else if ((ctx.mpegOffset & 2047) != 0 ) {
|
||||
ERROR_LOG(HLE, "sceMpegQueryStreamOffset: Bad offset");
|
||||
ERROR_LOG(HLE, "sceMpegQueryStreamSize: Bad offset");
|
||||
Memory::Write_U32(0, sizeAddr);
|
||||
return ERROR_MPEG_INVALID_VALUE;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue