Browse code

Minor tweak to help text

Dario Rodriguez authored on 06/02/2022 14:45:26
Showing 1 changed files
... ...
@@ -53,11 +53,11 @@ main(int argc, char *argv[])
53 53
         char *currentoutfilename;
54 54
         if(argc<2 || strcmp(argv[argc-1],"--help")==0) {
55 55
                 printf("Syntax: %s [-i] [-q jpegquality] [-n identitylevel] {identity | lutfile[,lutfile[,...]]} { identity | infile1 } [infile2 [...]] -o outfile\n",argv[0]);
56
+                printf("NOTE: -i makes the program interpolate the LUTs.\n");
56 57
                 printf("Example: %s haldclut.png sprite.png -o result.png\n",argv[0]);
57 58
                 printf("Example: %s -i haldclut.png sprite.png -o result.png\n",argv[0]);
58 59
                 printf("Example: %s -n 16 identity identity -o identity.png\n",argv[0]);
59 60
                 printf("Example: %s -q 85 haldclut.png infile.png -o outfile.jpg\n",argv[0]);
60
-                printf("NOTE: -i makes the program interpolate the LUTs.\n");
61 61
                 return(1);
62 62
         }
63 63
         /* parse arguments */