Allow empty string (for "recent") in `MainForm.SanitiseForFileDialog`

fixes 1cee9dff6
This commit is contained in:
YoshiRulz 2025-01-20 02:09:14 +10:00
parent 8310e5420c
commit 4c3ea14efc
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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),