diff tools/lib64gfx.c @ 1483:1e7f7489d3e0

Improve dmC64GetImageTypeString() and use it also in 64vw.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 11 May 2018 04:21:15 +0300
parents df6dacb48970
children 06a9c16601d6
line wrap: on
line diff
--- a/tools/lib64gfx.c	Fri May 11 03:29:55 2018 +0300
+++ b/tools/lib64gfx.c	Fri May 11 04:21:15 2018 +0300
@@ -155,10 +155,10 @@
 {
     snprintf(buf, len,
         "%s%s%s%s",
-        (type & D64_FMT_FLI) ? "FLI " : "",
-        (type & D64_FMT_MC) ? "MCol " : "HiRes ",
-        (type & D64_FMT_ILACE) ? "Ilace " : "",
-        (type & D64_FMT_CHAR) ? "CharMap" : ""
+        (type & D64_FMT_MC)    ? "MultiColor " : "HiRes ",
+        (type & D64_FMT_ILACE) ? "Interlaced " : "",
+        (type & D64_FMT_FLI)   ? "FLI " : "",
+        (type & D64_FMT_CHAR)  ? "CHAR" : ""
         );
 
     return buf;