changeset 2023:362fb8295f0c

Be more informative about the actual sub-format of the IFF image (PBM/ILBM).
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 25 Oct 2018 19:21:33 +0300
parents eb6dafdd36dc
children f41bc7203a16
files tools/libgfx.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))
     {