diff --git a/src/BizHawk.Client.Common/config/PathEntryCollection.cs b/src/BizHawk.Client.Common/config/PathEntryCollection.cs index cba2e3a97c..24e99e411d 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollection.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollection.cs @@ -162,7 +162,8 @@ namespace BizHawk.Client.Common } [JsonIgnore] - public string FirmwaresPathFragment => this[GLOBAL, "Firmware"].Path; + public string FirmwarePathFragment + => this[GLOBAL, "Firmware"].Path; [JsonIgnore] internal string TempFilesFragment => this[GLOBAL, "Temp Files"].Path; diff --git a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs index f14be3b3e1..fe6a83f58c 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs @@ -168,7 +168,7 @@ namespace BizHawk.Client.Common public static string FirmwareAbsolutePath(this PathEntryCollection collection) { - return collection.AbsolutePathFor(collection.FirmwaresPathFragment, null); + return collection.AbsolutePathFor(collection.FirmwarePathFragment, null); } public static string LogAbsolutePath(this PathEntryCollection collection)