Restore old behaviour of "Always use recent path for ROMs"
fixes 41d46dd37
, see #1574
This commit is contained in:
parent
948084a97e
commit
e7e587d625
|
@ -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"];
|
||||
|
||||
|
|
Loading…
Reference in New Issue