summaryrefslogtreecommitdiff
path: root/png2ff.c
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2016-01-04 18:47:38 +0100
committerFRIGN <dev@frign.de>2016-01-04 18:47:38 +0100
commitd8e77e37dd74d4835977209c3cd57fba3307f6a8 (patch)
tree3d05d13ad23cd6a50409b7167fa0fc2d2e8058fb /png2ff.c
parent06c4b47d0102d2e2205c983c2158b4121c7293ab (diff)
Readd &color
Somehow, it broke the depth-value on libpng 1.4.*. Should be worth a bug-report to the libpng-guys, but I can't be arsed right now. This fucking library is a pain in the ass.
Diffstat (limited to 'png2ff.c')
-rw-r--r--png2ff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/png2ff.c b/png2ff.c
index 101036d..0835d34 100644
--- a/png2ff.c
+++ b/png2ff.c
@@ -13,7 +13,7 @@ main(int argc, char *argv[])
png_structp png_struct_p;
png_infop png_info_p;
png_bytepp png_row_p;
- int depth;
+ int depth, color;
uint32_t width, height, png_row_len, tmp32, r, i;
uint16_t tmp16;
@@ -43,7 +43,7 @@ main(int argc, char *argv[])
png_read_png(png_struct_p, png_info_p, PNG_TRANSFORM_PACKING |
PNG_TRANSFORM_EXPAND, NULL);
png_get_IHDR(png_struct_p, png_info_p, &width, &height, &depth,
- NULL, NULL, NULL, NULL);
+ &color, NULL, NULL, NULL);
png_row_len = png_get_rowbytes(png_struct_p, png_info_p);
png_row_p = png_get_rows(png_struct_p, png_info_p);