diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-01 16:26:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-01 16:26:11 -0700 |
commit | d5e42d485e6c4a62b78281aac900bb447d811ab1 (patch) | |
tree | 29f958ad62d29bf9cd92fef9985a361377b89deb /dive.h | |
parent | adc7280c025e68f6d55d779ad56712cb17aa3ae7 (diff) | |
download | subsurface-d5e42d485e6c4a62b78281aac900bb447d811ab1.tar.gz |
gasmix: stop tracking nitrogen percentages
The only thing you can do with that thing is screw things up (like
libdivecomputer did). There's no value in tracking the "filler" gas,
since you can always just calculate it from the gases that actually
matter.
So just track Oxygen and Helium - and make sure they have sane values.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -66,7 +66,6 @@ typedef struct { typedef struct { fraction_t o2; - fraction_t n2; fraction_t he; } gasmix_t; |