diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/yawa.c | 8 | ||||
-rw-r--r-- | src/yawa.h | 8 |
2 files changed, 8 insertions, 8 deletions
@@ -46,7 +46,7 @@ parse_opt(signed key, char *arg, struct argp_state *state) num_add_colors += 1; break; - case 'D': + case 'd': ; signed distance = parse_int(arg, "add distance"); arguments->distance[num_distances] = distance; @@ -120,15 +120,15 @@ parse_opt(signed key, char *arg, struct argp_state *state) arguments->gamma_amount = parse_double(arg, "gamma amount"); break; - case 'v': + case 1: arguments->flipv = true; break; - case 'h': + case 2: arguments->fliph = true; break; - case 'd': + case 3: arguments->flipd = true; break; @@ -76,7 +76,7 @@ struct arguments { static struct argp_option options[] = { {0, 0, 0, 0, "Gradients:", 1}, {"add", 'a', "COLOR", 0, "Add color to range", 1}, - {"distance", 'D', "DISTANCE", 0, "Distance to use for adding color to range. " + {"distance", 'd', "DISTANCE", 0, "Distance to use for adding color to range. " "Defaults to 1 for each color", 1}, {"gradient", 'g', "ANGLE", 0, "Render gradient using specified angle", 1}, {"clear", 'c', 0, 0, "Clear the color range", 1}, @@ -97,9 +97,9 @@ static struct argp_option options[] = { {"contrast", 'o', "AMOUNT", 0, "Adjust the contrast of the current image", 4}, {"brightness", 'B', "AMOUNT", 0, "Adjust the bightness of the current image", 4}, {"gamma", 'G', "AMOUNT", 0, "Adjust the gamma level of the current image", 4}, - {"flipv", 'v', 0, 0, "Flip the current image vertically", 4}, - {"fliph", 'h', 0, 0, "Flip the current image horizontally", 4}, - {"flipd", 'd', 0, 0, "Flip the current image diagonally", 4}, + {"flipv", 1, 0, 0, "Flip the current image vertically", 4}, + {"fliph", 2, 0, 0, "Flip the current image horizontally", 4}, + {"flipd", 3, 0, 0, "Flip the current image diagonally", 4}, {0, 0, 0, 0, "Misc:", -1}, {"alpha", 'A', "AMOUNT", 0, "Adjust alpha level for colors and images", -1}, |