svnno****@sourc*****
svnno****@sourc*****
2009年 8月 28日 (金) 01:18:05 JST
Revision: 174 http://sourceforge.jp/projects/swfed/svn/view?view=rev&revision=174 Author: yoya Date: 2009-08-28 01:18:05 +0900 (Fri, 28 Aug 2009) Log Message: ----------- is_morph と has_strokes は SWF のフィールドでないので print 対象から外す Modified Paths: -------------- trunk/src/swf_tag_shape.c -------------- next part -------------- Modified: trunk/src/swf_tag_shape.c =================================================================== --- trunk/src/swf_tag_shape.c 2009-08-27 11:36:44 UTC (rev 173) +++ trunk/src/swf_tag_shape.c 2009-08-27 16:18:05 UTC (rev 174) @@ -47,6 +47,7 @@ } bs = bitstream_open(); bitstream_input(bs, data, length); + swf_tag_shape->shape_id = bitstream_getbytesLE(bs, 2); swf_rect_parse(bs, &(swf_tag_shape->rect)); // DefineMorphShape, DefineMorphShape2 @@ -123,8 +124,8 @@ printf("shape_id=%d\n", swf_tag_shape->shape_id); swf_rect_print(&(swf_tag_shape->rect), indent_depth); print_indent(indent_depth); - printf("is_morph=%d has_strokes=%d\n", - swf_tag_shape->is_morph, swf_tag_shape->has_strokes); +// printf("is_morph=%d has_strokes=%d\n", +// swf_tag_shape->is_morph, swf_tag_shape->has_strokes); if (swf_tag_shape->is_morph) { swf_rect_print(&(swf_tag_shape->rect_morph), indent_depth); }