Path Config - FDS Bios - make browse button a file browser not a folder browser
This commit is contained in:
parent
07615f58bb
commit
9864c6a192
|
@ -175,8 +175,15 @@ namespace BizHawk.MultiClient
|
|||
public string AVIPath = ".";
|
||||
public string LogPath = ".";
|
||||
|
||||
public string BaseCOL = Path.Combine(".", "ColecoVision");
|
||||
public string PathCOLROMs = ".";
|
||||
public string PathCOLSavestates = Path.Combine(".", "State");
|
||||
public string PathCOLScreenshots = Path.Combine(".", "Screenshots");
|
||||
public string PathCOLCheats = Path.Combine(".", "Cheats");
|
||||
|
||||
//BIOS Paths
|
||||
public string PathPCEBios = Path.Combine(".", "PCECDBios.pce");
|
||||
public string PathCOLBios = Path.Combine(".", "ColecoBios.bin");
|
||||
public string PathINTVGROM = Path.Combine(".", "grom.bin");
|
||||
public string PathINTVEROM = Path.Combine(".", "erom.bin");
|
||||
public string PathFDSBios = Path.Combine(".", "disksys.rom");
|
||||
|
|
|
@ -836,7 +836,10 @@ namespace BizHawk.MultiClient
|
|||
|
||||
private void NESBrowseFDSBios_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(NESFDSBiosBox, NESFDSBiosDescription.Text);
|
||||
BrowseForBios(
|
||||
"ROM files (*.rom)|*.rom|All Files|*.*",
|
||||
Global.Config.PathFDSBios, "NES",
|
||||
NESFDSBiosBox);
|
||||
}
|
||||
|
||||
private void SNESFirmwaresDescription_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
|
|
Loading…
Reference in New Issue