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/common.h | |
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/common.h')
-rw-r--r-- | src/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common.h b/src/common.h index e63e15b..3eaf697 100644 --- a/src/common.h +++ b/src/common.h @@ -82,13 +82,13 @@ enum program_mode { }; struct location { - float lat, lon; + double lat, lon; }; struct color_setting { int temperature; - float gamma[3]; - float brightness; + double gamma[3]; + double brightness; }; /* Time range. |