PCFX - remap some buttons, add (bad) mnemonics for mode buttons
This commit is contained in:
parent
573b544a88
commit
2dd618b6f2
|
@ -444,6 +444,10 @@ namespace BizHawk.Client.Common
|
|||
["IV"] = '4',
|
||||
["V"] = '5',
|
||||
["VI"] = '6',
|
||||
["MODE 1: Set A"] = 'a',
|
||||
["MODE 1: Set B"] = 'b',
|
||||
["MODE 2: Set A"] = 'A',
|
||||
["MODE 2: Set B"] = 'B'
|
||||
},
|
||||
["PCE"] = new Dictionary<string, char>
|
||||
{
|
||||
|
|
|
@ -49,5 +49,15 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX
|
|||
{
|
||||
"pcfx.slstart", "pcfx.slend",
|
||||
};
|
||||
|
||||
protected override IDictionary<string, string> ButtonNameOverrides { get; } = new Dictionary<string, string>
|
||||
{
|
||||
["UP ↑"] = "Up",
|
||||
["DOWN ↓"] = "Down",
|
||||
["LEFT ←"] = "Left",
|
||||
["RIGHT →"] = "Right",
|
||||
["SELECT"] = "Select",
|
||||
["RUN"] = "Run"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue