changeset 2244:b26e37e7cbe6

Move function to better place in the file.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 15 Jun 2019 09:16:28 +0300
parents 79ece1072143
children 95f669692b01
files tools/lib64util.c
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64util.c	Sat Jun 15 07:55:49 2019 +0300
+++ b/tools/lib64util.c	Sat Jun 15 09:16:28 2019 +0300
@@ -100,20 +100,6 @@
 }
 
 
-void argShowC64PaletteHelp(FILE *fp)
-{
-    fprintf(fp, "\nAvailable C64 palettes:\n");
-    for (int n = 0; n < ndmC64DefaultPalettes; n++)
-    {
-        DMC64Palette *pal = &dmC64DefaultPalettes[n];
-        fprintf(fp,
-            "%-10s | %s\n",
-            pal->name, pal->desc);
-    }
-    fprintf(fp, "\n");
-}
-
-
 void argShowC64Formats(FILE *fp, const BOOL rw)
 {
     fprintf(fp,
@@ -151,6 +137,20 @@
 }
 
 
+void argShowC64PaletteHelp(FILE *fp)
+{
+    fprintf(fp, "\nAvailable C64 palettes:\n");
+    for (int n = 0; n < ndmC64DefaultPalettes; n++)
+    {
+        DMC64Palette *pal = &dmC64DefaultPalettes[n];
+        fprintf(fp,
+            "%-10s | %s\n",
+            pal->name, pal->desc);
+    }
+    fprintf(fp, "\n");
+}
+
+
 BOOL argHandleC64PaletteOption(char *optArg, DMC64Palette **ppal, char **palFile)
 {
     if (strcasecmp(optArg, "help") == 0 ||