mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Rename prefs.deco_mode to prefs.planner_deco_mode
This is to avoid confusion with planner.display_deco_mode. When accessing the "current deco mode" use the decoMode() helper function. Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
bb4bf639c3
commit
935734100f
7 changed files with 20 additions and 20 deletions
|
|
@ -32,7 +32,7 @@ void setupPrefsVpmb()
|
|||
prefs.ascratelast6m = prefs.ascrate50;
|
||||
prefs.descrate = 99000 / 60;
|
||||
prefs.last_stop = false;
|
||||
prefs.deco_mode = VPMB;
|
||||
prefs.planner_deco_mode = VPMB;
|
||||
prefs.vpmb_conservatism = 0;
|
||||
}
|
||||
|
||||
|
|
@ -284,7 +284,7 @@ void TestPlan::testMetric()
|
|||
setupPrefs();
|
||||
prefs.unit_system = METRIC;
|
||||
prefs.units.length = units::METERS;
|
||||
prefs.deco_mode = BUEHLMANN;
|
||||
prefs.planner_deco_mode = BUEHLMANN;
|
||||
|
||||
struct diveplan testPlan = {};
|
||||
setupPlan(&testPlan);
|
||||
|
|
@ -320,7 +320,7 @@ void TestPlan::testImperial()
|
|||
setupPrefs();
|
||||
prefs.unit_system = IMPERIAL;
|
||||
prefs.units.length = units::FEET;
|
||||
prefs.deco_mode = BUEHLMANN;
|
||||
prefs.planner_deco_mode = BUEHLMANN;
|
||||
|
||||
struct diveplan testPlan = {};
|
||||
setupPlan(&testPlan);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue