From f99b8fa51808f99c26d9f59d09e3a4a0e81159ae Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 4 Oct 2024 23:39:32 +1000 Subject: [PATCH] Use `PathEntryCollection.FirmwareAbsolutePath` extension --- src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs | 2 +- src/BizHawk.Common/Extensions/CollectionExtensions.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs b/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs index ebbb69bf6b..aa290b09a5 100644 --- a/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs +++ b/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs @@ -145,7 +145,7 @@ namespace BizHawk.Client.Common var reader = new RealFirmwareReader(); // build a list of files under the global firmwares path, and build a hash for each of them (as ResolutionInfo) while we're at it - var todo = new Queue(new[] { new DirectoryInfo(pathEntries.AbsolutePathFor(pathEntries.FirmwaresPathFragment, null)) }); + Queue todo = [ new(pathEntries.FirmwareAbsolutePath()) ]; while (todo.Count != 0) { var di = todo.Dequeue(); diff --git a/src/BizHawk.Common/Extensions/CollectionExtensions.cs b/src/BizHawk.Common/Extensions/CollectionExtensions.cs index 9802438b2b..a016528466 100644 --- a/src/BizHawk.Common/Extensions/CollectionExtensions.cs +++ b/src/BizHawk.Common/Extensions/CollectionExtensions.cs @@ -65,6 +65,11 @@ namespace BizHawk.Common.CollectionExtensions return min; } + /// for collection initializer syntax + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void Add(this Queue q, T item) + => q.Enqueue(item); + /// not found after mapping over /// implementation from https://stackoverflow.com/a/1766369/7467292 public static T BinarySearch(this IList list, Func keySelector, TKey key)