Merge pull request #3393 from tkopczuk/patch-1

Fix 'AnalogToDigitTransitionStart' always using 9.2 regardless of the configured value.
This commit is contained in:
SybexX
2024-11-20 03:33:23 +01:00
committed by GitHub

View File

@@ -564,7 +564,7 @@ bool ClassFlowPostProcessing::ReadParameter(FILE* pfile, string& aktparamgraph)
handleDecimalSeparator(splitted[0], splitted[1]);
}
if ((toUpper(_param) == "AnalogToDigitTransitionStart") && (splitted.size() > 1)) {
if ((toUpper(_param) == "ANALOGTODIGITTRANSITIONSTART") && (splitted.size() > 1)) {
handleAnalogToDigitTransitionStart(splitted[0], splitted[1]);
}