From 4f8870427f1cfa92eee705d50c6d908d104903a8 Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Sat, 13 Jul 2024 09:40:27 -0400 Subject: [PATCH] Set the fallback threshold for tyre slip effects to zero --- src/monocoque/helper/confighelper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monocoque/helper/confighelper.c b/src/monocoque/helper/confighelper.c index b62bedd..430c762 100644 --- a/src/monocoque/helper/confighelper.c +++ b/src/monocoque/helper/confighelper.c @@ -364,7 +364,7 @@ int devsetup(const char* device_type, const char* device_subtype, const char* co if (ds->effect_type == EFFECT_TYRESLIP || ds->effect_type == EFFECT_TYRELOCK || ds->effect_type == EFFECT_ABSBRAKES) { gettyre(device_settings, ds); - ds->threshold = .75; + ds->threshold = 0; int found = config_setting_lookup_float(device_settings, "threshold", &ds->threshold); }