swf_DeleteTag now takes two arguments
authorkramm <kramm>
Sun, 27 Jul 2008 09:44:28 +0000 (09:44 +0000)
committerkramm <kramm>
Sun, 27 Jul 2008 09:44:28 +0000 (09:44 +0000)
src/swfc.c

index 6857728..fafa388 100644 (file)
@@ -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;