From bfb38bbbd323af4f4f29e21e7faa1b8748585c77 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 13 Oct 2008 14:09:45 +0000 Subject: [PATCH] fixed bug where the END tag was missing with -Tm --- src/swfcombine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swfcombine.c b/src/swfcombine.c index a1437c1..76bb1cc 100644 --- a/src/swfcombine.c +++ b/src/swfcombine.c @@ -1062,7 +1062,7 @@ void normalcombine(SWF*master, char*slave_name, SWF*slave, SWF*newswf) FLAGS_WRITEDEFINES|FLAGS_WRITENONDEFINES| FLAGS_WRITESPRITE ); } - swf_DeleteTag(newswf, tag); + swf_DeleteTag(newswf, newswf->firstTag); } void combine(SWF*master, char*slave_name, SWF*slave, SWF*newswf) -- 1.7.10.4