svnno****@sourc*****
svnno****@sourc*****
2011年 3月 28日 (月) 23:10:34 JST
Revision: 484 http://sourceforge.jp/projects/swfed/svn/view?view=rev&revision=484 Author: yoya Date: 2011-03-28 23:10:34 +0900 (Mon, 28 Mar 2011) Log Message: ----------- シンボル内のインスタンス名の探す処理で変数名を誤っていたので修正。 Modified Paths: -------------- trunk/src/swf_object.c -------------- next part -------------- Modified: trunk/src/swf_object.c =================================================================== --- trunk/src/swf_object.c 2011-03-28 13:44:17 UTC (rev 483) +++ trunk/src/swf_object.c 2011-03-28 14:10:34 UTC (rev 484) @@ -1054,12 +1054,12 @@ continue; } for (t = tag_sprite->tag ; t ; t = t->next) { - if (tag->tag == 26) { // PlaceObject2 + if (t->tag == 26) { // PlaceObject2 cid = swf_tag_place_get_cid_by_instance_name(t, instance_name, instance_name_len, swf); + if (cid > 0) { + break; // found + } } - if (cid > 0) { - break; // found - } } } if (cid > 0) {