Skip to content

Commit e2778c9

Browse files
committed
Removed accidental semicolon, likely by accidentally touching keyboard.
1 parent d94030d commit e2778c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Samples/Visualizers/InputControlVisualizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private static InputControl ResolveCurrentControl(InputControlList<InputControl>
154154
// Only accept control that belongs to the current device of the same device type as candidate control device type.
155155
foreach (var candidate in candidates)
156156
{
157-
if (candidate.device == GetCurrentDevice(candidate.device)) ;
157+
if (candidate.device == GetCurrentDevice(candidate.device))
158158
{
159159
return candidate;
160160
}

0 commit comments

Comments
 (0)