From 8b0e97dc465a439ccaabd56f9162055f8bff7b1b Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 23 Nov 2004 08:05:10 +0000 Subject: [PATCH] fixed sprite frame count problem. --- src/swfc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swfc.c b/src/swfc.c index c2de7de..93a7569 100644 --- a/src/swfc.c +++ b/src/swfc.c @@ -1316,7 +1316,7 @@ void s_includeswf(char*name, char*filename) s = tag = swf_InsertTag(tag, ST_DEFINESPRITE); swf_SetU16(tag, id); - swf_SetU16(tag, 0); + swf_SetU16(tag, swf.frameCount); swf_Relocate(&swf, idmap); -- 1.7.10.4