diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-07-09 23:37:30 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-09 14:40:36 -0700 |
commit | 2ff2daebd70907dcd6323371d5842d2bd064d28e (patch) | |
tree | 157d91a70661913bfc16b4842286bb4730ebd7e0 /subsurfacestartup.c | |
parent | f940ebcf74a7a398fb991796c56b831fa39959d1 (diff) | |
download | subsurface-2ff2daebd70907dcd6323371d5842d2bd064d28e.tar.gz |
Move drop_stone_mode setting to prefs
There is no reason to treat drop_stone_mode different from the rest of
the planner settings, so move it to our prefs structure.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurfacestartup.c')
-rw-r--r-- | subsurfacestartup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subsurfacestartup.c b/subsurfacestartup.c index a451c2ba3..58291d272 100644 --- a/subsurfacestartup.c +++ b/subsurfacestartup.c @@ -40,7 +40,8 @@ struct preferences default_prefs = { .descrate = 18000 / 60, .bottompo2 = 1400, .decopo2 = 1600, - .doo2breaks = false + .doo2breaks = false, + .drop_stone_mode = false }; int run_survey; |