Skip to content

Commit

Permalink
Merge pull request #3393 from tkopczuk/patch-1
Browse files Browse the repository at this point in the history
Fix 'AnalogToDigitTransitionStart' always using 9.2 regardless of the configured value.
  • Loading branch information
SybexX authored Nov 20, 2024
2 parents 14e9d6a + 25ae046 commit 3ee32d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}

Expand Down

0 comments on commit 3ee32d8

Please sign in to comment.