diff options
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/redshift.c b/src/redshift.c index 1fb950d..b149754 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -18,7 +18,6 @@ * Copyright (c) 2025 Mattias Andrée <m@maandre.se> */ #include "common.h" -#include "solar.h" /* poll.h is not available on Windows but there is no Windows location provider * using polling. On Windows, we just define some stubs to make things compile. @@ -543,7 +542,9 @@ run_continual_mode(const struct location_provider *provider, transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); period = get_period_from_elevation(scheme, elevation); transition_prog = get_transition_progress_from_elevation(scheme, elevation); @@ -915,7 +916,9 @@ main(int argc, char *argv[]) transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); if (options.verbose) { /* TRANSLATORS: Append degree symbol if possible. */ printf(_("Solar elevation: %f\n"), elevation); |