# HG changeset patch # User Matti Hamalainen # Date 1540484493 -10800 # Node ID 362fb8295f0c67b734fe37b29b30a8baf77c4c63 # Parent eb6dafdd36dc19e364e89daa1559a0d1d525a8a4 Be more informative about the actual sub-format of the IFF image (PBM/ILBM). diff -r eb6dafdd36dc -r 362fb8295f0c tools/libgfx.c --- a/tools/libgfx.c Thu Oct 25 19:07:00 2018 +0300 +++ b/tools/libgfx.c Thu Oct 25 19:21:33 2018 +0300 @@ -1702,8 +1702,8 @@ iff.planar = (idsig == IFF_ID_ILBM); - dmMsg(3, "IFF: FORM data size %d\n", - chunk.size); + dmMsg(3, "IFF: FORM is %s format image, with size %d bytes.\n", + iff.planar ? "ILBM" : "PBM", chunk.size); while (!parsed && !dmfeof(fp)) {