only load ControllerConfig dialog, remove option for old input config

This commit is contained in:
adelikat 2012-11-08 04:46:48 +00:00
parent db2b4584f5
commit 49dc9cbfa0
1 changed files with 6 additions and 19 deletions

View File

@ -412,8 +412,7 @@ namespace BizHawk.MultiClient
private void controllersToolStripMenuItem_Click(object sender, EventArgs e)
{
if (true)
{
ControllerConfig c = new ControllerConfig();
c.ShowDialog();
if (c.DialogResult == DialogResult.OK)
@ -422,18 +421,6 @@ namespace BizHawk.MultiClient
SyncControls();
}
}
else
{
InputConfig i = new InputConfig();
i.ShowDialog();
//re-initialize controls in case anything was changed
if (i.DialogResult == DialogResult.OK)
{
InitControls();
SyncControls();
}
}
}
private void hotkeysToolStripMenuItem_Click(object sender, EventArgs e)
{