s/firmwares/firmware/ in `PathEntryCollection`

This commit is contained in:
YoshiRulz 2024-10-27 01:59:02 +10:00
parent eee34dd69a
commit 02bf292a85
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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)