Path Config - FDS Bios - make browse button a file browser not a folder browser

This commit is contained in:
adelikat 2012-11-17 19:08:43 +00:00
parent 07615f58bb
commit 9864c6a192
2 changed files with 11 additions and 1 deletions

View File

@ -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");

View File

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