Skip to content

Commit

Permalink
Fix uninitialized memory
Browse files Browse the repository at this point in the history
durswd committed Jun 11, 2022
1 parent f160dd5 commit 816b7a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dev/Cpp/Effekseer/Effekseer/Effekseer.EffectNode.h
Original file line number Diff line number Diff line change
@@ -1092,6 +1092,10 @@ struct ParameterRendererCommon
memcpy(&UV.Animation.InterpolationType, pos, sizeof(UV.Animation.InterpolationType));
pos += sizeof(UV.Animation.InterpolationType);
}
else
{
UV.Animation.InterpolationType = UV.Animation.NONE;
}
}
else if (UVType == UV_SCROLL)
{

0 comments on commit 816b7a4

Please sign in to comment.