fix #3704
This commit is contained in:
parent
a3746fe7b7
commit
2a40b172e1
|
@ -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',
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue