fixed syntax error
[swftools.git] / lib / rfxswf.c
index 473dc2e..a6071c4 100644 (file)
@@ -268,8 +268,9 @@ double swf_GetFixed(TAG * t)
 }
 void swf_SetFixed(TAG * t, double f)
 {
-  swf_SetU16(t, (U16)((f-(int)f)*65536));
-  swf_SetU16(t, (U16)f - (f<0));
+  U16 fr = (f-(int)f)*65536;
+  swf_SetU16(t, fr);
+  swf_SetU16(t, (U16)f - (f<0 && fr!=0));
 }
 float swf_GetFixed8(TAG * t)
 {
@@ -279,8 +280,9 @@ float swf_GetFixed8(TAG * t)
 }
 void swf_SetFixed8(TAG * t, float f)
 {
-  swf_SetU8(t, (U8)((f-(int)f)*256));
-  swf_SetU8(t, (U8)f - (f<0));
+  U8 fr = (f-(int)f)*256;
+  swf_SetU8(t, fr);
+  swf_SetU8(t, (U8)f - (f<0 && fr!=0));
 }
 
 int swf_SetRGB(TAG * t,RGBA * col)
@@ -1309,7 +1311,7 @@ int  swf_WriteSWF2(writer_t*writer, SWF * swf)     // Writes SWF to file, return
     }
   }
   
-  if(swf->fileVersion >= 8) {
+  if(swf->fileVersion >= 9) {
       if (swf->firstTag && swf->firstTag->id != ST_FILEATTRIBUTES)
       {
          U32 flags = 0x8; // | 128 = usenetwork, | 8 = hasmetadata