Default value for frame offset should be 0

This commit is contained in:
2012-06-12 21:29:15 +00:00
parent 36ed4818e5
commit 46c95d37c6

View File

@@ -446,7 +446,7 @@ static MovieClip *movieclip_alloc(const char *name)
clip->proxy.quality = 90;
clip->start_frame = 1;
clip->frame_offset = 1;
clip->frame_offset = 0;
return clip;
}