ControllerDefinition - fix CategoryLabels not being copied in the copy constructor
This commit is contained in:
parent
1d8cec5ae5
commit
8e4142e839
|
@ -100,6 +100,7 @@ namespace BizHawk.Emulation.Common
|
|||
public ControllerDefinition(ControllerDefinition source)
|
||||
: this()
|
||||
{
|
||||
CategoryLabels = source.CategoryLabels;
|
||||
Name = source.Name;
|
||||
BoolButtons.AddRange(source.BoolButtons);
|
||||
FloatControls.AddRange(source.FloatControls);
|
||||
|
|
Loading…
Reference in New Issue