summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-08-06 14:03:24 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-08-06 14:03:24 -0700
commit39f606350b6025cb7c5cf9e657d7ef092eb026d7 (patch)
treeaaf8d6a03cbb7769eb694d579b82fc6a191888cd
parent4912951e97b4040941944e1df70a91366a6a5559 (diff)
downloadsubsurface-39f606350b6025cb7c5cf9e657d7ef092eb026d7.tar.gz
Fill the list of weightsystems from data in existing dives
This was simply an omission in the current implementation. All the plumbing was there but never got hooked up with the fixup_dive function as intended. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--dive.c4
-rw-r--r--dive.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/dive.c b/dive.c
index 9f57aed58..57a735c8e 100644
--- a/dive.c
+++ b/dive.c
@@ -472,6 +472,10 @@ struct dive *fixup_dive(struct dive *dive)
if (same_rounded_pressure(cyl->sample_end, cyl->end))
cyl->end.mbar = 0;
}
+ for (i = 0; i < MAX_WEIGHTSYSTEMS; i++) {
+ weightsystem_t *ws = dive->weightsystem + i;
+ add_weightsystem_description(ws);
+ }
return dive;
}
diff --git a/dive.h b/dive.h
index a25fafb39..30894e506 100644
--- a/dive.h
+++ b/dive.h
@@ -338,6 +338,7 @@ extern void exit_ui(void);
extern void report_error(GError* error);
extern void add_cylinder_description(cylinder_type_t *);
+extern void add_weightsystem_description(weightsystem_t *);
extern void add_people(const char *string);
extern void add_location(const char *string);
extern void remember_event(const char *eventname);