mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
Fix type
This commit is contained in:
parent
8007c5e483
commit
dbfe28db51
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ void MxFlcPresenter::LoadFrame(MxStreamChunk* p_chunk)
|
|||
{
|
||||
MxU8* data = p_chunk->GetData();
|
||||
|
||||
MxS32 rectCount = *(MxU32*) data;
|
||||
data += sizeof(MxU32);
|
||||
MxS32 rectCount = *(MxS32*) data;
|
||||
data += sizeof(MxS32);
|
||||
|
||||
MxRect32* rects = (MxRect32*) data;
|
||||
data += rectCount * sizeof(MxRect32);
|
||||
|
|
Loading…
Reference in a new issue