mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Do output unit conversion in the dive info window too
This should take care of it all, unless I missed some case. Now we should just save the default units somewhere, and I should do the divelist update much cleaner (instead of re-doing the divelist entirely, it should just repaint it - now we lose the highlited dive etc). Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
fdbd80a3a2
commit
c4d5ebb069
2 changed files with 46 additions and 8 deletions
16
dive.h
16
dive.h
|
@ -95,7 +95,21 @@ static inline int to_C(temperature_t temp)
|
|||
{
|
||||
if (!temp.mkelvin)
|
||||
return 0;
|
||||
return (temp.mkelvin - 273150) / 1000;
|
||||
return (temp.mkelvin - 273150 + 499) / 1000;
|
||||
}
|
||||
|
||||
static inline int to_F(temperature_t temp)
|
||||
{
|
||||
if (!temp.mkelvin)
|
||||
return 0;
|
||||
return temp.mkelvin * 9 / 5000.0 - 459.670 + 0.5;
|
||||
}
|
||||
|
||||
static inline int to_K(temperature_t temp)
|
||||
{
|
||||
if (!temp.mkelvin)
|
||||
return 0;
|
||||
return (temp.mkelvin + 499)/1000;
|
||||
}
|
||||
|
||||
static inline int to_PSI(pressure_t pressure)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue