mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Don't test for liquid Helium
Simply accept temperatures that are above absolute zero. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
68bd80dff4
commit
93d07f631a
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ void show_dive_stats(struct dive *dive)
|
|||
set_label(info_stat_w.max_depth, "%.*f %s", decimals, value, unit);
|
||||
value = get_depth_units(dive->meandepth.mm, &decimals, &unit);
|
||||
set_label(info_stat_w.avg_depth, "%.*f %s", decimals, value, unit);
|
||||
if (dive->watertemp.mkelvin > 200) {
|
||||
if (dive->watertemp.mkelvin) {
|
||||
value = get_temp_units(dive->watertemp.mkelvin, &unit);
|
||||
set_label(info_stat_w.water_temp, "%.1f %s", value, unit);
|
||||
} else
|
||||
|
|
Loading…
Add table
Reference in a new issue