Skip to content

Commit

Permalink
Add input2 to getInt32() in Clocks (#463)
Browse files Browse the repository at this point in the history
fixes #460
  • Loading branch information
t-sommer authored Mar 26, 2024
1 parent 2f15683 commit 1ec15a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Clocks/model.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ Status getInt32(ModelInstance* comp, ValueReference vr, int32_t values[], size_t
case vr_result2:
values[(*index)++] = M(result2);
return OK;
case vr_input2:
values[(*index)++] = M(input2);
return OK;
case vr_output3:
values[(*index)++] = M(output3);
return OK;
Expand Down

0 comments on commit 1ec15a1

Please sign in to comment.