diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 20:02:05 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 20:04:36 +0100 |
commit | f0b7fc1ecb80cb34a45e60d07e9c53745b251686 (patch) | |
tree | fd492257cd76b856d9f9282e6bd69c650aea9797 /src/redshift.c | |
parent | Consistently use (locally defined) WINDOWS macro over mixing __WIN32__ and _WIN32 (diff) | |
download | redshift-ng-f0b7fc1ecb80cb34a45e60d07e9c53745b251686.tar.gz redshift-ng-f0b7fc1ecb80cb34a45e60d07e9c53745b251686.tar.bz2 redshift-ng-f0b7fc1ecb80cb34a45e60d07e9c53745b251686.tar.xz |
Just use double, no mixing in float
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/src/redshift.c b/src/redshift.c index ca8e66b..be97912 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -187,8 +187,8 @@ print_location(const struct location *location) The string following each number is an abreviation for north, source, east or west (N, S, E, W). */ printf(_("Location: %.2f %s, %.2f %s\n"), - fabs(location->lat), location->lat >= 0.f ? north : south, - fabs(location->lon), location->lon >= 0.f ? east : west); + fabs(location->lat), location->lat >= 0.0 ? north : south, + fabs(location->lon), location->lon >= 0.0 ? east : west); } /* Interpolate color setting structs given alpha. */ @@ -233,10 +233,10 @@ color_setting_diff_is_major( const struct color_setting *second) { return (abs(first->temperature - second->temperature) > 25 || - fabsf(first->brightness - second->brightness) > 0.1 || - fabsf(first->gamma[0] - second->gamma[0]) > 0.1 || - fabsf(first->gamma[1] - second->gamma[1]) > 0.1 || - fabsf(first->gamma[2] - second->gamma[2]) > 0.1); + fabs(first->brightness - second->brightness) > 0.1 || + fabs(first->gamma[0] - second->gamma[0]) > 0.1 || + fabs(first->gamma[1] - second->gamma[1]) > 0.1 || + fabs(first->gamma[2] - second->gamma[2]) > 0.1); } /* Reset color setting to default values. */ @@ -424,14 +424,11 @@ method_try_start(const struct gamma_method *method, GAMMA_STATE **state, /* Check whether gamma is within allowed levels. */ static int -gamma_is_valid(const float gamma[3]) +gamma_is_valid(const double gamma[3]) { - return !(gamma[0] < MIN_GAMMA || - gamma[0] > MAX_GAMMA || - gamma[1] < MIN_GAMMA || - gamma[1] > MAX_GAMMA || - gamma[2] < MIN_GAMMA || - gamma[2] > MAX_GAMMA); + return !(gamma[0] < MIN_GAMMA || gamma[0] > MAX_GAMMA || + gamma[1] < MIN_GAMMA || gamma[1] > MAX_GAMMA || + gamma[2] < MIN_GAMMA || gamma[2] > MAX_GAMMA); } /* Check whether location is valid. |