diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs index 79e7d5ce33..6c06972718 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs @@ -70,7 +70,7 @@ namespace BizHawk.Client.EmuHawk public int MinValue { get; set; } - public readonly Orientation Orientation; + public Orientation Orientation { get; } public Size TargetSize { get; set; } @@ -102,9 +102,9 @@ namespace BizHawk.Client.EmuHawk /// An (X, Y) pair intended to be a screen coordinate (for zappers, mouse, stylus, etc.) public sealed class TargetedPairSchema : PadSchemaControl { - public readonly int MaxValue; + public int MaxValue { get; } - public readonly string SecondaryName; + public string SecondaryName { get; } public Size TargetSize { get; set; } @@ -118,11 +118,11 @@ namespace BizHawk.Client.EmuHawk public sealed class DiscManagerSchema : PadSchemaControl { - public readonly IEmulator OwnerEmulator; + public IEmulator OwnerEmulator { get; } - public readonly IReadOnlyList SecondaryNames; + public IReadOnlyList SecondaryNames { get; } - public readonly Size TargetSize; + public Size TargetSize { get; } public DiscManagerSchema(int x, int y, Size targetSize, IEmulator owner, IReadOnlyList secondaryNames) : base(new Point(x, y), "Disc Select")