EA SCHl: Fixed get_ea_stream_size

This commit is contained in:
NicknineTheEagle 2018-12-27 21:58:41 +03:00
parent 4024016d10
commit 6553786f8a

View File

@ -1275,7 +1275,7 @@ static int get_ea_stream_size(STREAMFILE* streamFile, off_t start_offset, VGMSTR
else
block_size = read_32bitLE(block_offset + 0x04, streamFile);
stream_size += block_size - 0x08;
stream_size += block_size - 0x12;
block_offset += block_size;
}