FitRideFile - Rename record field 90 as PERFORMANCECONDITION

It is not docummented but it seems to match the observed values in GC
This commit is contained in:
Ale Martinez
2019-03-29 19:33:52 -03:00
parent 74349879b7
commit cce26607ea

View File

@@ -602,6 +602,9 @@ struct FitFileReaderState
case 85: // STEP_LENGTH
return "STEPLENGTH"; // Step Length
case 90: // PERFORMANCE_CONDITION
return "PERFORMANCECONDITION"; // Performance Contition
default:
return QString("FIELD_%1").arg(native_num);
}
@@ -1735,6 +1738,9 @@ struct FitFileReaderState
case 87: // ???
break;
case 90: // PERFORMANCE_CONDITION
native_num = -1;
break;
default:
unknown_record_fields.insert(native_num);