Changed defctrl.json to support Lynx's Pause Button. Apparently that is an important button.
This commit is contained in:
parent
92de71a0c6
commit
a3f8d4bac8
|
@ -3599,11 +3599,23 @@ namespace BizHawk.Client.EmuHawk
|
|||
private void LinkConnectStatusBarButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
// TODO: it would be cool if clicking this toggled the state
|
||||
if (Global.Emulator.CoreComm.LinkConnected == true)
|
||||
{
|
||||
//Disconnect
|
||||
//This Value: cablediscosignal_new Changes to False, The Core will disconnect
|
||||
|
||||
}
|
||||
else if (Global.Emulator.CoreComm.LinkConnected == false)
|
||||
{
|
||||
//Reconnect
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private void barcodeReaderToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
GlobalWin.Tools.Load<BarcodeEntry>();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -636,9 +636,9 @@
|
|||
"Right": "RightArrow",
|
||||
"A": "X",
|
||||
"B": "Z",
|
||||
"Option 1": "Return",
|
||||
"Option 2": "Space",
|
||||
"Pause": "",
|
||||
"Option 1": "A",
|
||||
"Option 2": "X",
|
||||
"Pause": "Return",
|
||||
"Power": ""
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue