mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 09:38:14 -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();
|
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);
|
||||||
|
|
Loading…
Reference in a new issue