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:
1d20e19
)
fixed "schematic.png" bug
author
kramm
<kramm>
Sat, 21 Feb 2004 20:26:39 +0000
(20:26 +0000)
committer
kramm
<kramm>
Sat, 21 Feb 2004 20:26:39 +0000
(20:26 +0000)
src/png2swf.c
patch
|
blob
|
history
diff --git
a/src/png2swf.c
b/src/png2swf.c
index
cc70c61
..
fe46551
100644
(file)
--- a/
src/png2swf.c
+++ b/
src/png2swf.c
@@
-418,6
+418,7
@@
void applyfilter1(int mode, U8*src, U8*old, U8*dest, int width)
else if(mode==3) {
for(x=0;x<width;x++) {
*dest = *src+(*old+last)/2;
+ last = *dest;
dest++;
old++;
src++;