diff --git a/CHANGELIST.md b/CHANGELIST.md index 34e1e189..78453d5e 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -58,6 +58,7 @@ - Handle no drives betterer - Packaging requires `-windows` for framework - Fix other `-windows` places for .NET 6 +- Fix typo in DICMultiSectorReadValue ### 2.4 (2022-10-26) diff --git a/MPF.Core/Data/Options.cs b/MPF.Core/Data/Options.cs index dc4a55b7..871e1091 100644 --- a/MPF.Core/Data/Options.cs +++ b/MPF.Core/Data/Options.cs @@ -231,7 +231,7 @@ namespace MPF.Core.Data public int DICMultiSectorReadValue { get { return GetInt32Setting(_settings, "DICMultiSectorReadValue", 0); } - set { _settings["DICMultiSectorRead"] = value.ToString(); } + set { _settings["DICMultiSectorReadValue"] = value.ToString(); } } ///