mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Warning fix.
This commit is contained in:
parent
f687613d68
commit
9511fd81f1
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ bool CISOFileBlockDevice::ReadBlock(int blockNumber, u8 *outPtr)
|
|||
}
|
||||
if (z.total_out != frameSize)
|
||||
{
|
||||
ERROR_LOG(LOADER, "block %d: block size error %d != %d\n", blockNumber, z.total_out, frameSize);
|
||||
ERROR_LOG(LOADER, "block %d: block size error %d != %d\n", blockNumber, (u32)z.total_out, frameSize);
|
||||
inflateEnd(&z);
|
||||
memset(outPtr, 0, GetBlockSize());
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue