Skip to content

Commit

Permalink
- fix misplaced bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoGer committed Jun 21, 2024
1 parent cbd9f3b commit 3341721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoordinateConverter/DCS/Aircraft/OH58D.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private static List<DCSCommand> GetCommandsForMFKText(string text)
keyCode = (EKeyCode)Enum.Parse(typeof(EKeyCode), "MFK_" + c, true);
break;
}
commands.Add(new DCSCommand((int)EDeviceCode.MFK, (int)keyCode), DELAY);
commands.Add(new DCSCommand((int)EDeviceCode.MFK, (int)keyCode, DELAY));
}
return commands;
}
Expand Down

0 comments on commit 3341721

Please sign in to comment.