From 747501af5253ce72e093b14068ff480e305e8357 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 31 Mar 2020 09:17:53 -0500 Subject: [PATCH] nitpick previous commits - public properties not readonly fields --- .../tools/VirtualPads/schema/PadSchemaControl.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs index c63b69fdc4..79e7d5ce33 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs @@ -11,15 +11,14 @@ namespace BizHawk.Client.EmuHawk { public abstract class PadSchemaControl { - public readonly Point Location; - - public readonly string Name; - protected PadSchemaControl(Point location, string name) { Location = location; Name = name; } + + public Point Location { get; } + public string Name { get; } } /// A single on/off button