Set default cloud timeout to ten seconds for mobile app

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-06-17 05:17:56 -07:00
parent 9db886b8c8
commit 2d5f023b58

View file

@ -94,7 +94,11 @@ struct preferences default_prefs = {
.vpmb_conservatism = 3,
.distance_threshold = 1000,
.time_threshold = 600,
.cloud_timeout = 5
#if defined(SUBSURFACE_MOBILE)
.cloud_timeout = 10,
#else
.cloud_timeout = 5,
#endif
};
int run_survey;