diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-09-22 14:02:26 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-09-22 16:29:49 -0700 |
commit | d5c86ebe3dd67397f0f61d57ae9c07d995c38728 (patch) | |
tree | 1a0a3f479fb23911d064e83dff8c2f131e286573 /dive.h | |
parent | a93641b7222e767d6a3a1be598cd8099d8517059 (diff) | |
download | subsurface-d5c86ebe3dd67397f0f61d57ae9c07d995c38728.tar.gz |
Add OTU to divelist
and change OTUs to be tracked as int, not double
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -161,7 +161,7 @@ struct dive { depth_t visibility; temperature_t airtemp, watertemp; cylinder_t cylinder[MAX_CYLINDERS]; - double otu; + int otu; int samples, alloc_samples; struct sample sample[]; }; |