git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fbc30d
)
fixed obj->move parsing bug.
author
kramm
<kramm>
Fri, 21 Jan 2005 18:41:01 +0000
(18:41 +0000)
committer
kramm
<kramm>
Fri, 21 Jan 2005 18:41:01 +0000
(18:41 +0000)
lib/modules/swfobject.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfobject.c
b/lib/modules/swfobject.c
index
8773c2a
..
d108ade
100644
(file)
--- 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);