Restore old behaviour of "Always use recent path for ROMs"

fixes 41d46dd37, see #1574
This commit is contained in:
YoshiRulz 2022-11-08 06:30:12 +10:00
parent 948084a97e
commit e7e587d625
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

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