Replace some parameter mutation w/ recursion
This commit is contained in:
parent
585ed99cdd
commit
0b5f48aede
|
@ -78,7 +78,7 @@ namespace BizHawk.Client.Common
|
||||||
// Hack
|
// Hack
|
||||||
if (systemId == "Global")
|
if (systemId == "Global")
|
||||||
{
|
{
|
||||||
systemId = null;
|
return collection.AbsolutePathForInner(path, systemId: null);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function translates relative path and special identifiers in absolute paths
|
// This function translates relative path and special identifiers in absolute paths
|
||||||
|
|
|
@ -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
|
// 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")
|
if (name == "Base" || system == "Global" || system == "Global_NULL")
|
||||||
{
|
{
|
||||||
system = null;
|
BrowseFolder(box, name, system: null);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
DialogResult result;
|
DialogResult result;
|
||||||
|
|
Loading…
Reference in New Issue