From bae7e68ac03535a3cfeb4ad88f97b9be71f37565 Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Thu, 29 Nov 2001 18:22:39 +0000
Subject: [PATCH] added handling for jpegtables.

---
 src/combine.c |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/combine.c b/src/combine.c
index 727f858..9530bb7 100644
--- a/src/combine.c
+++ b/src/combine.c
@@ -157,8 +157,15 @@ void write_sprite_defines(struct writer_t*w)
 			 * Anyway we can't throw it out, so we just pass it
 			 * through.
 			 */
+			writer_write(w, tag->fulldata, tag->fulllength);
 			break;
 		    }
+		 case TAGID_JPEGTABLES:
+			/* according to the flash specs, there may only 
+			   be one JPEGTABLES tag per swf. This is maybe
+			   a big FIXME */
+			writer_write(w, tag->fulldata, tag->fulllength);
+		    break;
 		 case TAGID_EXPORTASSETS:
 		    logf("<debug> deliberately ignoring EXPORTASSETS tag");
 		    break;
-- 
1.7.10.4