new pce cores - add some button name overrides, and support mnemonics
This commit is contained in:
parent
b1c2ed0d3d
commit
573b544a88
|
@ -445,6 +445,17 @@ namespace BizHawk.Client.Common
|
|||
["V"] = '5',
|
||||
["VI"] = '6',
|
||||
},
|
||||
["PCE"] = new Dictionary<string, char>
|
||||
{
|
||||
["I"] = '1',
|
||||
["II"] = '2',
|
||||
["III"] = '3',
|
||||
["IV"] = '4',
|
||||
["V"] = '5',
|
||||
["VI"] = '6',
|
||||
["Mode: Set 2-button"] = 'm',
|
||||
["Mode: Set 6-button"] = 'M'
|
||||
},
|
||||
["NDS"] = new Dictionary<string, char>
|
||||
{
|
||||
["LidOpen"] = 'o',
|
||||
|
|
|
@ -52,7 +52,12 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
|||
|
||||
protected override IDictionary<string, string> ButtonNameOverrides { get; } = new Dictionary<string, string>
|
||||
{
|
||||
{ "RIGHT →", "Right up my arse" },
|
||||
["UP ↑"] = "Up",
|
||||
["DOWN ↓"] = "Down",
|
||||
["LEFT ←"] = "Left",
|
||||
["RIGHT →"] = "Right",
|
||||
["SELECT"] = "Select",
|
||||
["RUN"] = "Run"
|
||||
};
|
||||
|
||||
// pce always has two layers, sgx always has 4, and mednafen knows this
|
||||
|
|
|
@ -61,7 +61,12 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
|||
|
||||
protected override IDictionary<string, string> ButtonNameOverrides { get; } = new Dictionary<string, string>
|
||||
{
|
||||
{ "RIGHT →", "Right up my arse" },
|
||||
["UP ↑"] = "Up",
|
||||
["DOWN ↓"] = "Down",
|
||||
["LEFT ←"] = "Left",
|
||||
["RIGHT →"] = "Right",
|
||||
["SELECT"] = "Select",
|
||||
["RUN"] = "Run"
|
||||
};
|
||||
|
||||
// pce always has two layers, sgx always has 4, and mednafen knows this
|
||||
|
|
Loading…
Reference in New Issue