svnno****@sourc*****
svnno****@sourc*****
2009年 8月 28日 (金) 01:46:00 JST
Revision: 180 http://sourceforge.jp/projects/swfed/svn/view?view=rev&revision=180 Author: yoya Date: 2009-08-28 01:46:00 +0900 (Fri, 28 Aug 2009) Log Message: ----------- print の色表示処理の改造 Modified Paths: -------------- trunk/src/swf_line_style.c -------------- next part -------------- Modified: trunk/src/swf_line_style.c =================================================================== --- trunk/src/swf_line_style.c 2009-08-27 16:45:27 UTC (rev 179) +++ trunk/src/swf_line_style.c 2009-08-27 16:46:00 UTC (rev 180) @@ -147,12 +147,12 @@ } } else if (tag->tag == 32) { // DefineShape3 print_indent(indent_depth); - printf("width=%u\n", line_style->width); - swf_rgba_print(&(line_style->rgba), indent_depth + 1); + printf("width=%u ", line_style->width); + swf_rgba_print(&(line_style->rgba), 0); } else { print_indent(indent_depth); - printf("width=%u\n", line_style->width); - swf_rgb_print(&(line_style->rgb), indent_depth + 1); + printf("width=%u ", line_style->width); + swf_rgb_print(&(line_style->rgb), 0); } return 0; }