OSDN Git Service

- DefineShape3(32), DefineMorphShape(46) を有効にした
authoryoya <yoya@7c90b180-03d5-4157-b861-58a559ae9d1e>
Sat, 9 Oct 2010 15:15:10 +0000 (15:15 +0000)
committeryoya <yoya@7c90b180-03d5-4157-b861-58a559ae9d1e>
Sat, 9 Oct 2010 15:15:10 +0000 (15:15 +0000)
- 16 は欠番なので削除。誤って DefineButtonSound(17)を割り当ててた

git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/swfed/trunk@231 7c90b180-03d5-4157-b861-58a559ae9d1e

src/swf_tag.c

index 3185601..5ab2b7e 100644 (file)
@@ -34,7 +34,7 @@ swf_tag_info_t swf_tag_info_table[] = {
     { 13, "DefineFontInfo", NULL },
     { 14, "DefineSound", swf_tag_sound_detail_handler },
     { 15, "StartSound", NULL },
-    { 16, "DefineButtonSound", NULL },
+    // 16 missing
     { 17, "DefineButtonSound", NULL },
     { 18, "SoundStreamHead", NULL },
     { 19, "SoundStreamBlock", NULL },
@@ -43,8 +43,7 @@ swf_tag_info_t swf_tag_info_table[] = {
     { 22, "DefineShape2", swf_tag_shape_detail_handler },
     { 26, "PlaceObject2", NULL },
     { 28, "RemoveObject2", NULL },
-    //    { 32, "DefineShape3", swf_tag_shape_detail_handler },
-    { 32, "DefineShape3", NULL },
+    { 32, "DefineShape3", swf_tag_shape_detail_handler },
     { 33, "DefineText2", NULL },
     { 34, "DefineButton2", NULL },
     { 35, "DefineBitsJPEG3", swf_tag_jpeg3_detail_handler },
@@ -52,8 +51,7 @@ swf_tag_info_t swf_tag_info_table[] = {
     { 37, "DefineEditText", swf_tag_edit_detail_handler },
     { 39, "DefineSprite", swf_tag_sprite_detail_handler },
     { 43, "FrameLabel", NULL } ,
-    //    { 46, "DefineMorphShape", swf_tag_shape_detail_handler },
-    { 46, "DefineMorphShape", NULL },
+    { 46, "DefineMorphShape", swf_tag_shape_detail_handler },
     { 48, "DefineFont2", NULL } ,
     { 56, "Export", NULL } ,
     { 59, "DoInitAction", NULL } ,
@@ -61,10 +59,8 @@ swf_tag_info_t swf_tag_info_table[] = {
     { 73, "DefineFontAlignZones", NULL },
     { 74, "CSMTextSettings", NULL },
     { 75, "DefineFont3", NULL } ,
-    //    { 83, "DefineShape4", swf_tag_shape_detail_handler },
-    { 83, "DefineShape4", NULL },
-    //    { 84, "DefineMorphShape2", swf_tag_shape_detail_handler },
-    { 84, "DefineMorphShape2", NULL},
+    { 83, "DefineShape4", NULL /*swf_tag_shape_detail_handler*/ },
+    { 84, "DefineMorphShape2", NULL /*swf_tag_shape_detail_handler*/ },
     { 88, "DefineFontName", NULL } ,
     { 777,"Reflex", NULL } ,
 };