From 8e4142e839ddc7f551ce10e674a1d441848a53bd Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 14 Dec 2016 14:24:37 -0600 Subject: [PATCH] ControllerDefinition - fix CategoryLabels not being copied in the copy constructor --- .../Base Implementations/ControllerDefinition.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs b/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs index a0c1316daa..8eca50604e 100644 --- a/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs +++ b/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs @@ -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);