changeset 2117:91d5caf0ff82

Oops, wrong order of hires/mc/ecm strings in dmC64GetImageTypeString() was left in the commit adding ECM support. Fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 26 May 2019 05:20:47 +0300
parents b49d7cb20a73
children 05a6e00b09d0
files tools/lib64gfx.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.c	Sun May 26 02:45:44 2019 +0300
+++ b/tools/lib64gfx.c	Sun May 26 05:20:47 2019 +0300
@@ -36,8 +36,8 @@
 
 char * dmC64GetImageTypeString(char *buf, const size_t len, const int type, const BOOL lng)
 {
-    static const char *fmtModesShort[] = { "MC", "HiRes", "ECM" };
-    static const char *fmtModesLong[] = { "MultiColor", "HiRes", "Extended Color Mode" };
+    static const char *fmtModesShort[] = { "HiRes", "MC", "ECM" };
+    static const char *fmtModesLong[] = { "HiRes", "MultiColor", "Extended Color Mode" };
     snprintf(buf, len,
         "%s %s%s%s",
         lng ? fmtModesLong[type & D64_FMT_MASK] : fmtModesShort[type & D64_FMT_MASK],