diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-11 20:59:08 -0800 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2020-03-06 10:00:13 +0100 |
commit | 97e26fd51b5e235d0e60aeac4252f0b1bb0d1dff (patch) | |
tree | d8f3be93c6a5886ecb3471c6d39d5b75d4f2933f /core/dive.h | |
parent | 2a97934db4c9e0bedf87649575cba527b874386f (diff) | |
download | subsurface-97e26fd51b5e235d0e60aeac4252f0b1bb0d1dff.tar.gz |
mobile: allow disabling BT support from the command line
This is a quick hack to reduce the noise in the log file when chasing other
bugs. Maybe this should not be enabled on release builds, but right now I don't
think the harm that having this in would do.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index e64164e75..55858932d 100644 --- a/core/dive.h +++ b/core/dive.h @@ -257,7 +257,7 @@ extern bool autogroup; struct dive *unregister_dive(int idx); extern void delete_single_dive(int idx); -extern int run_survey, quit, force_root; +extern int run_survey, quit, force_root, ignore_bt; #ifdef SUBSURFACE_MOBILE_DESKTOP extern char *testqml; #endif |