PCFX - remap some buttons, add (bad) mnemonics for mode buttons

This commit is contained in:
adelikat 2020-06-13 15:21:52 -05:00
parent 573b544a88
commit 2dd618b6f2
2 changed files with 14 additions and 0 deletions

View File

@ -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>
{

View File

@ -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"
};
}
}