changeset 2373:f35ee6f8d994

Improve the help text in argShowC64PaletteHelp().
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 08 Jan 2020 12:29:35 +0200
parents d42dccc34964
children 2afe501cfed2
files tools/lib64util.c
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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 <name>):\n"
-        "-----------------------------------\n");
+        "Available internal C64 palettes (-p <name>):\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");
 }