# HG changeset patch # User Matti Hamalainen # Date 1559114693 -10800 # Node ID 903effcd616bf404d3bd2b3098230f1420e200c2 # Parent bc2ccc5754302b37fb66de5c9920bd0814b84eb7 Use only long option for char ROM. diff -r bc2ccc575430 -r 903effcd616b tools/64vw.c --- a/tools/64vw.c Wed May 29 09:11:46 2019 +0300 +++ b/tools/64vw.c Wed May 29 10:24:53 2019 +0300 @@ -39,7 +39,7 @@ { 6, 'i', "info", "Print information only (no display)", OPT_NONE }, { 7, 'l', "list", "Output list of files that were recognized (implies -i)", OPT_NONE }, { 8, 'p', "probe", "Probe only (do not attempt to decode the image)", OPT_NONE }, - { 9, 'G', "char-rom", "Set character ROM file to be used.", OPT_ARGREQ }, + { 9, 0, "char-rom", "Set character ROM file to be used.", OPT_ARGREQ }, }; const int optListN = sizeof(optList) / sizeof(optList[0]); diff -r bc2ccc575430 -r 903effcd616b tools/gfxconv.c --- a/tools/gfxconv.c Wed May 29 09:11:46 2019 +0300 +++ b/tools/gfxconv.c Wed May 29 10:24:53 2019 +0300 @@ -168,7 +168,7 @@ { 14, 'I', "interleave", "Interleaved/planar output (some output formats)", OPT_NONE }, { 20, 'C', "compress", "Use compression -C <0-9>, 0 = disable, default is 9", OPT_ARGREQ }, { 16, 'R', "remap", "Remap output image colors (-R <(#RRGGBB|index):index>[,<..>][+remove] | -R @map.txt[+remove])", OPT_ARGREQ }, - { 21, 'G', "char-rom", "Set character ROM file to be used.", OPT_ARGREQ }, + { 21, 0, "char-rom", "Set character ROM file to be used.", OPT_ARGREQ }, }; static const int optListN = sizeof(optList) / sizeof(optList[0]);