# HG changeset patch # User Matti Hamalainen # Date 1558837247 -10800 # Node ID 91d5caf0ff823303ed4c864995aa5278e28307ff # Parent b49d7cb20a734762e36484a2ffccc0b4c18b2f4b Oops, wrong order of hires/mc/ecm strings in dmC64GetImageTypeString() was left in the commit adding ECM support. Fixed. diff -r b49d7cb20a73 -r 91d5caf0ff82 tools/lib64gfx.c --- 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],