summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2011-09-22 14:02:26 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2011-09-22 16:29:49 -0700
commitd5c86ebe3dd67397f0f61d57ae9c07d995c38728 (patch)
tree1a0a3f479fb23911d064e83dff8c2f131e286573 /dive.h
parenta93641b7222e767d6a3a1be598cd8099d8517059 (diff)
downloadsubsurface-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index 1766cff82..5cb324123 100644
--- a/dive.h
+++ b/dive.h
@@ -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[];
};