changed setFixed logic
authorkramm <kramm>
Wed, 8 Aug 2007 21:29:54 +0000 (21:29 +0000)
committerkramm <kramm>
Wed, 8 Aug 2007 21:29:54 +0000 (21:29 +0000)
lib/rfxswf.c

index c7e6562..0301f29 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 = (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 = (f-(int)f)*256;
+  swf_SetU8(t, fr);
+  swf_SetU8(t, (U8)f - (f<0 && fr!=0));
 }
 
 int swf_SetRGB(TAG * t,RGBA * col)