Allow empty string (for "recent") in `MainForm.SanitiseForFileDialog`
fixes 1cee9dff6
This commit is contained in:
parent
8310e5420c
commit
4c3ea14efc
|
@ -4494,7 +4494,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private static string SanitiseForFileDialog(string initDir)
|
||||
{
|
||||
if (Directory.Exists(initDir)) return initDir;
|
||||
if (initDir.Length is 0 || Directory.Exists(initDir)) return initDir;
|
||||
#if DEBUG
|
||||
throw new ArgumentException(
|
||||
paramName: nameof(initDir),
|
||||
|
|
Loading…
Reference in New Issue