rpng.c - cleanup

This commit is contained in:
twinaphex 2014-09-16 06:18:51 +02:00
parent d363bdf24e
commit 29d533773c

View File

@ -247,8 +247,7 @@ static inline int paeth(int a, int b, int c)
return a;
else if (pb <= pc)
return b;
else
return c;
return c;
}
static inline void copy_line_rgb(uint32_t *data,