Include HapticsChannels prop in ControllerDefinition clone ctor

This commit is contained in:
YoshiRulz 2021-07-21 10:49:50 +10:00
parent 664ab7fab6
commit d254c8121d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ namespace BizHawk.Emulation.Common
Name = source.Name;
BoolButtons.AddRange(source.BoolButtons);
foreach (var kvp in source.Axes) Axes.Add(kvp);
HapticsChannels.AddRange(source.HapticsChannels);
CategoryLabels = source.CategoryLabels;
}