mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Fix type
This commit is contained in:
@@ -47,8 +47,8 @@ void MxFlcPresenter::LoadFrame(MxStreamChunk* p_chunk)
|
|||||||
{
|
{
|
||||||
MxU8* data = p_chunk->GetData();
|
MxU8* data = p_chunk->GetData();
|
||||||
|
|
||||||
MxS32 rectCount = *(MxU32*) data;
|
MxS32 rectCount = *(MxS32*) data;
|
||||||
data += sizeof(MxU32);
|
data += sizeof(MxS32);
|
||||||
|
|
||||||
MxRect32* rects = (MxRect32*) data;
|
MxRect32* rects = (MxRect32*) data;
|
||||||
data += rectCount * sizeof(MxRect32);
|
data += rectCount * sizeof(MxRect32);
|
||||||
|
Reference in New Issue
Block a user