Skip to content

Commit 26ab29c

Browse files
committed
Correct method call for Rhs2116Trigger
- Due to the order of PRs being merged, a compiler error was introduced that was not caught before merging
1 parent 79c3f41 commit 26ab29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenEphys.Onix1/ConfigureRhs2116Trigger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public string ProbeInterfaceLoadFileName
147147
if (string.IsNullOrEmpty(probeInterfaceFileName))
148148
return new Rhs2116ProbeGroup();
149149

150-
return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile<Rhs2116ProbeGroup>(probeInterfaceFileName);
150+
return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile(probeInterfaceFileName, typeof(Rhs2116ProbeGroup)) as Rhs2116ProbeGroup;
151151
});
152152
}
153153
}

0 commit comments

Comments
 (0)