Animation - Fixed null reference exception in constructor

This commit is contained in:
miku-666
2023-05-13 20:12:35 +02:00
parent 1f47f0cfd1
commit f727f52658

View File

@@ -31,7 +31,7 @@ namespace PckStudio.Forms.Editor
public Animation(IEnumerable<Image> frameTextures, string ANIM)
{
this.textures = new List<Image>(textures);
this.textures = new List<Image>(frameTextures);
ParseAnim(ANIM);
}