Fix Issue 218, Global ROM folder now works
This commit is contained in:
parent
f7cfe4e393
commit
b5f6004674
|
@ -219,7 +219,7 @@ namespace BizHawk.Client.Common
|
|||
return Environment.SpecialFolder.Recent.ToString();
|
||||
}
|
||||
|
||||
var path = Global.Config.PathEntries[sysID, "ROM"] ?? Global.Config.PathEntries[sysID, "Base"];
|
||||
var path = Global.Config.PathEntries[sysID, "ROM"] ?? Global.Config.PathEntries["Global", "ROM"] ?? Global.Config.PathEntries[sysID, "Base"];
|
||||
|
||||
return MakeAbsolutePath(path.Path, sysID);
|
||||
}
|
||||
|
|
|
@ -134,7 +134,7 @@ namespace BizHawk.Client.Common
|
|||
public string LogPathFragment { get { return Global.Config.PathEntries["Global", "Debug Logs"].Path; } }
|
||||
public string FirmwaresPathFragment { get { return Global.Config.PathEntries["Global", "Firmware"].Path; } }
|
||||
public string AvPathFragment { get { return Global.Config.PathEntries["Global", "A/V Dumps"].Path; } }
|
||||
|
||||
public string GlobalRomFragment { get { return Global.Config.PathEntries["Global", "ROM"].Path; } }
|
||||
|
||||
//this one is special
|
||||
public string GlobalBaseFragment { get { return Global.Config.PathEntries["Global", "Base"].Path; } }
|
||||
|
|
Loading…
Reference in New Issue