X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fas3%2Fmain.c;h=1ce83a67e446b4d473a59a7defcb5aef9eca100d;hp=2835556f78358f3cf4d8ed98b2880cd38f5b220f;hb=9ed9a87914fc9a590967d46de404e0f6290b7bb2;hpb=8a7da6f65154bb96d47695cbcbf42684cccb0aad diff --git a/lib/as3/main.c b/lib/as3/main.c index 2835556..1ce83a6 100644 --- a/lib/as3/main.c +++ b/lib/as3/main.c @@ -64,7 +64,9 @@ int main(int argn, char*argv[]) } filename=argv[argn-1]; - //a3_debug = 1; //if bison was called with -t +#ifdef BISONDEBUG + a3_debug = 1; //if bison was called with -t +#endif as3_add_include_dir(getcwd(buf, 512)); @@ -124,7 +126,13 @@ int main(int argn, char*argv[]) swf.movieSize.xmin = swf.movieSize.ymin = 0; swf.movieSize.xmax = 20*20; swf.movieSize.ymax = 10*20; - TAG*tag = swf.firstTag = swf_InsertTag(0, ST_DOABC); + TAG*tag = (TAG*)as3_getassets(0); + if(!swf.firstTag && tag) swf.firstTag = tag; + + while(tag && tag->next) tag = tag->next; + + tag = swf_InsertTag(tag, ST_DOABC); + if(!swf.firstTag && tag) swf.firstTag = tag; swf_WriteABC(tag, code); if(!mainclass)