From: kramm Date: Fri, 21 Jan 2005 18:41:01 +0000 (+0000) Subject: fixed obj->move parsing bug. X-Git-Tag: release-0-6-3~25 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=83dfa8331972a9b9fc68ed321bce31f669094255 fixed obj->move parsing bug. --- diff --git a/lib/modules/swfobject.c b/lib/modules/swfobject.c index 8773c2a..d108ade 100644 --- a/lib/modules/swfobject.c +++ b/lib/modules/swfobject.c @@ -173,7 +173,7 @@ void swf_GetPlaceObject(TAG * tag,SWFPLACEOBJECT* obj) obj->depth = swf_GetU16(tag); //obj->internal = flags; - //flags&1: move + if(flags&1) obj->move = 1; if(flags&2) obj->id = swf_GetU16(tag); if(flags&4) swf_GetMatrix(tag, &obj->matrix); if(flags&8) swf_GetCXForm(tag, &obj->cxform,1);