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
(parent:
50c2416
)
added missing semicolon
author
kramm
<kramm>
Sun, 9 Sep 2007 10:25:18 +0000
(10:25 +0000)
committer
kramm
<kramm>
Sun, 9 Sep 2007 10:25:18 +0000
(10:25 +0000)
lib/modules/swfbits.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfbits.c
b/lib/modules/swfbits.c
index
c099e58
..
a024835
100644
(file)
--- a/
lib/modules/swfbits.c
+++ b/
lib/modules/swfbits.c
@@
-1011,7
+1011,7
@@
RGBA *swf_DefineLosslessBitsTagToImage(TAG * tag, int *dwidth, int *dheight)
/* remove premultiplication */
int alpha = data[pos+0];
if(alpha)
- alpha = 0xff0000/alpha
+ alpha = 0xff0000/alpha;
dest[pos2].r = (data[pos + 1]*alpha)>>16;
dest[pos2].g = (data[pos + 2]*alpha)>>16;
dest[pos2].b = (data[pos + 3]*alpha)>>16;