fixes.
authorkramm <kramm>
Sun, 2 Feb 2003 00:11:30 +0000 (00:11 +0000)
committerkramm <kramm>
Sun, 2 Feb 2003 00:11:30 +0000 (00:11 +0000)
src/swfcombine.1
src/swfcombine.c

index 5d46995..b8d8ba1 100644 (file)
@@ -1,4 +1,4 @@
-.TH swfcombine "1" "October 2001" "swfcombine" "swftools"
+.TH swfcombine "1" "January 2003" "swfcombine" "swftools"
 .SH NAME
 swfcombine - a tool for combining swf (flash) files
 .SH Synopsis
index 4089f5b..628825d 100644 (file)
@@ -10,7 +10,6 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#include <zlib.h>
 #include "../lib/rfxswf.h"
 #include "../lib/args.h"
 #include "../lib/log.h"
@@ -491,8 +490,8 @@ void matrix_adjust(MATRIX*m, int movex, int movey, float scalex, float scaley)
 {
     m->sx = (int)(m->sx*scalex);
     m->sy = (int)(m->sy*scaley);
-    m->r0 = (int)(m->r0*scalex);
-    m->r1 = (int)(m->r1*scaley);
+    m->r1 = (int)(m->r1*scalex);
+    m->r0 = (int)(m->r0*scaley);
     m->tx += movex;
     m->ty += movey;
 }