Replace some parameter mutation w/ recursion

This commit is contained in:
YoshiRulz 2021-03-19 10:06:02 +10:00
parent 585ed99cdd
commit 0b5f48aede
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 3 additions and 2 deletions

View File

@ -78,7 +78,7 @@ namespace BizHawk.Client.Common
// Hack
if (systemId == "Global")
{
systemId = null;
return collection.AbsolutePathForInner(path, systemId: null);
}
// This function translates relative path and special identifiers in absolute paths

View File

@ -202,7 +202,8 @@ namespace BizHawk.Client.EmuHawk
// Ugly hack, we don't want to pass in the system in for system base and global paths
if (name == "Base" || system == "Global" || system == "Global_NULL")
{
system = null;
BrowseFolder(box, name, system: null);
return;
}
DialogResult result;