From e7e587d625b0a6cc6c3109e4a797824953d16827 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 8 Nov 2022 06:30:12 +1000 Subject: [PATCH] Restore old behaviour of "Always use recent path for ROMs" fixes 41d46dd37, see #1574 --- .../config/PathEntryCollectionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs index eac04cb1c3..81de98b526 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs @@ -193,7 +193,7 @@ namespace BizHawk.Client.Common return collection.AbsolutePathFor(collection[PathEntryCollection.GLOBAL, "ROM"].Path, PathEntryCollection.GLOBAL); } - if (collection.UseRecentForRoms) return PathUtils.SpecialRecentsDir; + if (collection.UseRecentForRoms) return /*PathUtils.SpecialRecentsDir*/string.Empty; // instructs OpenFileDialog to use the dir of the most recently-opened file, a behaviour consistent with previous versions, even though it may never have been intended; this system will be overhauled when adding #1574 var path = collection[systemId, "ROM"];