This commit is contained in:
CasualPokePlayer 2023-10-28 22:49:28 -07:00
parent aaf46cc9a7
commit 151908104e
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ namespace BizHawk.Emulation.Common
foreach (var kvp in copyFrom.Axes) Axes.Add(kvp);
HapticsChannels.AddRange(copyFrom.HapticsChannels);
CategoryLabels = copyFrom.CategoryLabels;
_orderedControls = copyFrom._orderedControls;
// Do not clone _orderedControls, as GenOrderedControls may be overridden by the derived class
// _orderedControls = copyFrom._orderedControls;
MakeImmutable();
}