fixed bug in jpeg2000 decoding
[swftools.git] / src / as3compile.c
index 43b646f..9ee4569 100644 (file)
@@ -161,7 +161,7 @@ void args_callback_usage(char *name)
     printf("-X , --width                   Set target SWF width\n");
     printf("-Y , --height                  Set target SWF width\n");
     printf("-r , --rate                    Set target SWF framerate\n");
-    printf("-M , --mainclass               Set the name of the main class (extending flash.display.MovieClip)\n");
+    printf("-M , --mainclass               Set the name of the main class (extending flash.display.MovieClip or .Sprite)\n");
     printf("-l , --library <file>          Include library file <file>. <file> can be an .abc or .swf file.\n");
     printf("-I , --include <dir>           Add additional include dir <dir>.\n");
     printf("-N , --local-with-network      Make output file \"local with networking\"\n");
@@ -213,7 +213,6 @@ int main (int argc,char ** argv)
     } else {
         as3_add_include_dir(currentdir);
     }
-    registry_init();
 
     int t;
     processargs(argc, argv);
@@ -253,7 +252,7 @@ int main (int argc,char ** argv)
         tag = swf_InsertTag(tag, ST_SYMBOLCLASS);
         swf_SetU16(tag, 1);
         swf_SetU16(tag, 0);
-        swf_SetString(tag, as3_getglobalclass());
+        swf_SetString(tag, mainclass);
     } else {
         as3_warning("no global public MovieClip subclass");
     }