mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-13 01:49:16 +00:00
CdStreamPosix: fix type issues
This commit is contained in:
parent
ef9455c324
commit
1a3e254b6c
|
@ -163,7 +163,7 @@ CdStreamInit(int32 numChannels)
|
|||
debug("Using no buffered loading for streaming\n");
|
||||
}
|
||||
*/
|
||||
void *pBuffer = (void *)RwMallocAlign(CDSTREAM_SECTOR_SIZE, fsInfo.f_bsize);
|
||||
void *pBuffer = (void *)RwMallocAlign(CDSTREAM_SECTOR_SIZE, (RwUInt32)fsInfo.f_bsize);
|
||||
ASSERT( pBuffer != nil );
|
||||
|
||||
gNumImages = 0;
|
||||
|
@ -205,7 +205,7 @@ GetGTA3ImgSize(void)
|
|||
return 0;
|
||||
}
|
||||
ok:
|
||||
return statbuf.st_size;
|
||||
return (uint32)statbuf.st_size;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue