From e09067354afab1d1cb9c43a5e69b6615c369f69e Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 17 Dec 2023 12:21:00 -0500 Subject: [PATCH] Add a comment --- LEGO1/mxstreamchunk.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LEGO1/mxstreamchunk.cpp b/LEGO1/mxstreamchunk.cpp index 0b3d22f5..93e76a6c 100644 --- a/LEGO1/mxstreamchunk.cpp +++ b/LEGO1/mxstreamchunk.cpp @@ -35,6 +35,8 @@ MxU32 MxStreamChunk::ReadChunkHeader(MxU8* p_chunkData) MxU32 headersize = 0; if (p_chunkData) { MxU8* chunkData = p_chunkData; + // Note: the alpha debug version uses memcpy calls here, + // but the code generation is the same. GetScalar(&p_chunkData, m_flags); GetScalar(&p_chunkData, m_objectId); GetScalar(&p_chunkData, m_time);