add the coveted combo breaker

This commit is contained in:
zeromus 2013-12-19 22:53:06 +00:00
parent 96db47cb24
commit 76d867d5da
2 changed files with 11 additions and 1 deletions

View File

@ -386,6 +386,11 @@ namespace BizHawk.Client.EmuHawk
private void linkBasePath_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
if (Owner is PathConfig)
{
MessageBox.Show("C-C-C-Combo Breaker!", "Nice try, but");
return;
}
new PathConfig().ShowDialog(this);
RefreshBasePath();
}

View File

@ -194,8 +194,13 @@ namespace BizHawk.Client.EmuHawk
firmwareButton.Click += delegate
{
if (Owner is FirmwaresConfig)
{
MessageBox.Show("C-C-C-Combo Breaker!", "Nice try, but");
return;
}
var f = new FirmwaresConfig { TargetSystem = sys };
f.ShowDialog();
f.ShowDialog(this);
};
tabPage.Controls.Add(firmwareButton);