changeset 1864:897250732bfd

Remove multicolor option flag -m, as it can be specified with input format option -i flags (mc|sc).
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 24 Jun 2018 17:04:21 +0300
parents b2287ace1f0d
children 3e830bcb001a
files tools/gfxconv.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/tools/gfxconv.c	Sun Jun 24 17:03:41 2018 +0300
+++ b/tools/gfxconv.c	Sun Jun 24 17:04:21 2018 +0300
@@ -120,7 +120,6 @@
     {  0, '?', "help",          "Show this help", OPT_NONE },
     { 15, 'v', "verbose",       "Increase verbosity", OPT_NONE },
     {  3, 'o', "output",        "Output filename", OPT_ARGREQ },
-    {  2, 'm', "multicolor",    "Input is multicolor / output in multicolor", OPT_NONE },
     {  1, 'i', "informat",      "Set input format (spr[:mc:sc], chr[:mc|sc] or any supported image or C64 bitmap format)", OPT_ARGREQ },
     {  4, 's', "skip",          "Skip N bytes in input from start", OPT_ARGREQ },
     {  5, 'f', "format",        "Output format (see --formats)", OPT_ARGREQ },
@@ -526,10 +525,6 @@
             }
             break;
 
-        case 2:
-            optInMulticolor = TRUE;
-            break;
-
         case 3:
             optOutFilename = optArg;
             break;