# HG changeset patch # User Matti Hamalainen # Date 1578479375 -7200 # Node ID f35ee6f8d994cc48e363d66ce1035533affa4ff4 # Parent d42dccc34964c22937828d20a489d4504246047f Improve the help text in argShowC64PaletteHelp(). diff -r d42dccc34964 -r f35ee6f8d994 tools/lib64util.c --- a/tools/lib64util.c Wed Jan 08 12:29:21 2020 +0200 +++ b/tools/lib64util.c Wed Jan 08 12:29:35 2020 +0200 @@ -184,8 +184,8 @@ { fprintf(fh, "\n" - "Available C64 palettes (-p ):\n" - "-----------------------------------\n"); + "Available internal C64 palettes (-p ):\n" + "--------------------------------------------\n"); for (int n = 0; n < ndmC64DefaultPalettes; n++) { @@ -197,8 +197,9 @@ fprintf(fh, "\n" - "Instead one of the internal palettes, you can\n" - "also specify an external palette file.\n" + "Instead of using one of the internal palettes,\n" + "you can specify an external palette file.\n" + "\n" "Supported palette file formats are:\n" "-----------------------------------\n" ); @@ -213,7 +214,10 @@ fmt->fext, fmt->name); } } - fprintf(fh, "\n"); + fprintf(fh, + "\n" + "Example: -p foobar.bin\n" + "\n"); }