ControllerDefinition - fix CategoryLabels not being copied in the copy constructor

This commit is contained in:
adelikat 2016-12-14 14:24:37 -06:00
parent 1d8cec5ae5
commit 8e4142e839
1 changed files with 1 additions and 0 deletions

View File

@ -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);