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 (from parent 1:
91207d3
)
added ratio support swf_SetPlaceObject.
author
kramm
<kramm>
Sun, 6 Apr 2003 21:07:45 +0000
(21:07 +0000)
committer
kramm
<kramm>
Sun, 6 Apr 2003 21:07:45 +0000
(21:07 +0000)
lib/modules/swfobject.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfobject.c
b/lib/modules/swfobject.c
index
a9507ab
..
3703413
100644
(file)
--- a/
lib/modules/swfobject.c
+++ b/
lib/modules/swfobject.c
@@
-110,7
+110,7
@@
void swf_SetPlaceObject(TAG * t,SWFPLACEOBJECT* obj)
int m = !isUnitMatrix(&obj->matrix);
int cx = !isUnitCXForm(&obj->cxform);
int m = !isUnitMatrix(&obj->matrix);
int cx = !isUnitCXForm(&obj->cxform);
- flags = (obj->id?PF_CHAR:0)|(m?PF_MATRIX:0)|(cx?PF_CXFORM:0)|
+ flags = (obj->id?PF_CHAR:0)|(m?PF_MATRIX:0)|(cx?PF_CXFORM:0)|(obj->ratio?PF_RATIO:0)|
(obj->name?PF_NAME:0)|(obj->move?PF_MOVE:0)|
(obj->clipdepth?PF_CLIPACTION:0);
(obj->name?PF_NAME:0)|(obj->move?PF_MOVE:0)|
(obj->clipdepth?PF_CLIPACTION:0);