diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-03-24 19:11:31 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-28 11:17:03 -0700 |
commit | bb31c77597f28976eb4784318fa7b01a28f3942b (patch) | |
tree | fc3c7c04dc0dcf89d51554289dd5537f9ff5c95e /core/pref.h | |
parent | 1d0281c9234e44ce4804f8c7f376cd9d4ee68f54 (diff) | |
download | subsurface-bb31c77597f28976eb4784318fa7b01a28f3942b.tar.gz |
minimal pO2 threshold: split max threshold into min and max
Nothing really special here. Just a split of the only p02 max threshold into
a min threshold and max threshold, and the adaptation of the UI. Change of
translatable strings included.
ref: https://github.com/Subsurface-divelog/subsurface/issues/259
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'core/pref.h')
-rw-r--r-- | core/pref.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pref.h b/core/pref.h index 9122800bb..9cefd0812 100644 --- a/core/pref.h +++ b/core/pref.h @@ -14,7 +14,8 @@ typedef struct short po2; short pn2; short phe; - double po2_threshold; + double po2_threshold_min; + double po2_threshold_max; double pn2_threshold; double phe_threshold; } partial_pressure_graphs_t; |