From 867d93beccca0415c0490387e8a8fc92ca969692 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 27 Jul 2008 09:44:28 +0000 Subject: [PATCH] swf_DeleteTag now takes two arguments --- src/swfc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swfc.c b/src/swfc.c index 6857728..fafa388 100644 --- a/src/swfc.c +++ b/src/swfc.c @@ -817,7 +817,7 @@ TAG* removeFromTo(TAG*from, TAG*to) while(from!=to) { TAG*next = from->next; if(swf_isAllowedSpriteTag(from)) - swf_DeleteTag(from); + swf_DeleteTag(0, from); from = next; } save->next = 0; -- 1.7.10.4