This commit is contained in:
feos 2023-12-02 20:53:37 +03:00
parent a3746fe7b7
commit 2a40b172e1
2 changed files with 11 additions and 1 deletions

View File

@ -586,6 +586,8 @@ namespace BizHawk.Client.Common
["Pedal 2"] = '2',
["Push SW1 (Service)"] = 's',
["Push SW2 (Test)"] = 'T',
["Push SW3 (Service)"] = 's',
["Push SW4 (Test)"] = 'T',
["Red"] = 'R',
["Relay"] = 'R',
["Reverse"] = 'R',
@ -597,6 +599,7 @@ namespace BizHawk.Client.Common
["Sensor"] = 'S',
["Service"] = 'S',
["Service Mode"] = 'S',
["Service Mode 2"] = 'S',
["Service Button"] = 'S',
["Service 1"] = 's',
["Service 2"] = 's',

View File

@ -49,9 +49,16 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
{
var tag = buttonField.SubstringBefore(',');
var field = buttonField.SubstringAfterLast(',');
var dupName = "";
buttonFieldList.Add(field);
AddFieldPtr(tag, field);
MAMEController.BoolButtons.Add(field);
if (MAMEController.BoolButtons.Contains(field))
{
dupName = $" [{ tag }]";
}
MAMEController.BoolButtons.Add(field + dupName);
}
}