diff options
author | Matúš Honěk <matushonek@gmail.com> | 2019-04-29 15:35:33 +0200 |
---|---|---|
committer | Matúš Honěk <matushonek@gmail.com> | 2019-04-29 16:00:53 +0200 |
commit | 36007a0ad104bcb120c60de329d6ba70ba0b0dfe (patch) | |
tree | f6b08cd1d7c8c7fe737885391f381d417970ed36 /src | |
parent | Merge pull request #710 from hubvu/suspend-feature (diff) | |
download | redshift-ng-36007a0ad104bcb120c60de329d6ba70ba0b0dfe.tar.gz redshift-ng-36007a0ad104bcb120c60de329d6ba70ba0b0dfe.tar.bz2 redshift-ng-36007a0ad104bcb120c60de329d6ba70ba0b0dfe.tar.xz |
Add preserve-gamma configuration option
To be able to convey the same information the '-P' command line
option currently does, but using configuration file.
Diffstat (limited to 'src')
-rw-r--r-- | src/options.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index 33bf623..d30b03a 100644 --- a/src/options.c +++ b/src/options.c @@ -575,6 +575,10 @@ parse_config_file_option( return -1; } } + } else if (strcasecmp(key, "preserve-gamma") == 0) { + if (options->preserve_gamma == 1) { + options->preserve_gamma = !!atoi(value); + } } else if (strcasecmp(key, "adjustment-method") == 0) { if (options->method == NULL) { options->method = find_gamma_method( |