Start with 0 when computing maxdepth when fixing up

This is needed to get the correct maxdepth when replanning
leads to a shallower dive.

Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Robert C. Helling 2014-11-03 22:37:59 +01:00 committed by Dirk Hohndel
parent 40bdd607c0
commit 5fa2851bdf

View file

@ -1185,6 +1185,8 @@ void DivePlannerPointsModel::createPlan()
} else if (current_dive && displayed_dive.id == current_dive->id) {
// we are replanning a dive - make sure changes are reflected
// correctly in the dive structure and copy it back into the dive table
displayed_dive.maxdepth.mm = 0;
displayed_dive.dc.maxdepth.mm = 0;
fixup_dive(&displayed_dive);
copy_dive(&displayed_dive, current_dive);
}