git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
b390de3
)
make setFixed() work for negative numbers, too
author
kramm
<kramm>
Tue, 7 Aug 2007 17:18:43 +0000
(17:18 +0000)
committer
kramm
<kramm>
Tue, 7 Aug 2007 17:18:43 +0000
(17:18 +0000)
lib/rfxswf.c
patch
|
blob
|
history
diff --git
a/lib/rfxswf.c
b/lib/rfxswf.c
index
0abd61a
..
473dc2e
100644
(file)
--- a/
lib/rfxswf.c
+++ b/
lib/rfxswf.c
@@
-269,7
+269,7
@@
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);
+ swf_SetU16(t, (U16)f - (f<0));
}
float swf_GetFixed8(TAG * t)
{
@@
-280,7
+280,7
@@
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);
+ swf_SetU8(t, (U8)f - (f<0));
}
int swf_SetRGB(TAG * t,RGBA * col)