comparison tools/gfxconv.c @ 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
comparison
equal deleted inserted replaced
1863:b2287ace1f0d 1864:897250732bfd
118 static const DMOptArg optList[] = 118 static const DMOptArg optList[] =
119 { 119 {
120 { 0, '?', "help", "Show this help", OPT_NONE }, 120 { 0, '?', "help", "Show this help", OPT_NONE },
121 { 15, 'v', "verbose", "Increase verbosity", OPT_NONE }, 121 { 15, 'v', "verbose", "Increase verbosity", OPT_NONE },
122 { 3, 'o', "output", "Output filename", OPT_ARGREQ }, 122 { 3, 'o', "output", "Output filename", OPT_ARGREQ },
123 { 2, 'm', "multicolor", "Input is multicolor / output in multicolor", OPT_NONE },
124 { 1, 'i', "informat", "Set input format (spr[:mc:sc], chr[:mc|sc] or any supported image or C64 bitmap format)", OPT_ARGREQ }, 123 { 1, 'i', "informat", "Set input format (spr[:mc:sc], chr[:mc|sc] or any supported image or C64 bitmap format)", OPT_ARGREQ },
125 { 4, 's', "skip", "Skip N bytes in input from start", OPT_ARGREQ }, 124 { 4, 's', "skip", "Skip N bytes in input from start", OPT_ARGREQ },
126 { 5, 'f', "format", "Output format (see --formats)", OPT_ARGREQ }, 125 { 5, 'f', "format", "Output format (see --formats)", OPT_ARGREQ },
127 { 17, 'F', "formats", "List supported input/output formats", OPT_NONE }, 126 { 17, 'F', "formats", "List supported input/output formats", OPT_NONE },
128 { 8, 'q', "sequential", "Output sequential files (image output only)", OPT_NONE }, 127 { 8, 'q', "sequential", "Output sequential files (image output only)", OPT_NONE },
524 } 523 }
525 } 524 }
526 } 525 }
527 break; 526 break;
528 527
529 case 2:
530 optInMulticolor = TRUE;
531 break;
532
533 case 3: 528 case 3:
534 optOutFilename = optArg; 529 optOutFilename = optArg;
535 break; 530 break;
536 531
537 case 4: 532 case 4: