allow for non set cars to atleast use provided tyre diameters

This commit is contained in:
Paul Dino Jones 2025-12-24 16:23:03 -05:00
parent d984e5ee86
commit 681d456c51
1 changed files with 3 additions and 9 deletions

View File

@ -21,7 +21,7 @@
bool hasTyreDiameter(SimData* simdata) bool hasTyreDiameter(SimData* simdata)
{ {
if (simdata->tyrediameter[0] == -1 || simdata->tyrediameter[1] == -1 || simdata->tyrediameter[2] == -1 || simdata->tyrediameter[3] == -1) if (simdata->tyrediameter[0] <= 0 || simdata->tyrediameter[1] <= 0 || simdata->tyrediameter[2] <= 0 || simdata->tyrediameter[3] <= 0)
{ {
slogt("failed to find tyre diameter data"); slogt("failed to find tyre diameter data");
return false; return false;
@ -194,15 +194,9 @@ double slipeffect(SimData* simdata, int effecttype, int tyre, double threshold,
wheelslip[2] = 0; wheelslip[2] = 0;
wheelslip[3] = 0; wheelslip[3] = 0;
if(simdata->car == NULL) if(simdata->car == NULL || simdata->car[0] == 0)
{ {
slogw("sim is not compatible with wheel and tyre effects, or car and session not loaded."); useconfig = 0;
return 0;
}
if(simdata->car[0] == '\0')
{
slogw("sim is not compatible with wheel and tyre effects, or car not loaded.");
return 0;
} }
slogt("wheel vibration calculation with wheel config set to %i configchecked %i configfile %s car %s sim %i", useconfig, *configcheck, configfile, simdata->car, simdata->simexe); slogt("wheel vibration calculation with wheel config set to %i configchecked %i configfile %s car %s sim %i", useconfig, *configcheck, configfile, simdata->car, simdata->simexe);