From 9d1a22cab0da6dcdbc66218ea23207d6f7e917ce Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 24 Sep 2024 13:46:22 +1000 Subject: [PATCH] Fix typos from `WatchEditor` Designer file --- src/BizHawk.Client.EmuHawk/tools/Watch/WatchEditor.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Watch/WatchEditor.cs b/src/BizHawk.Client.EmuHawk/tools/Watch/WatchEditor.cs index a6e1a1aa2f..3dc7fb86b4 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Watch/WatchEditor.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Watch/WatchEditor.cs @@ -72,12 +72,11 @@ namespace BizHawk.Client.EmuHawk }; SizeDropDown.SelectedIndexChanged += SizeDropDown_SelectedIndexChanged; - LocLabelEx DisplayTypeLael = new() { Location = new(11, 106), Text = "Display Type" }; + LocLabelEx DisplayTypeLabel = new() { Location = new(11, 106), Text = "Display Type" }; DisplayTypeDropDown = new() { DropDownStyle = ComboBoxStyle.DropDownList, FormattingEnabled = true, - Items = { "1 Byte", "2 Byte", "4 Byte" }, Location = new(12, 122), Size = new(141, 21), TabIndex = 15, @@ -132,7 +131,7 @@ namespace BizHawk.Client.EmuHawk CancelButton = Cancel; ClientSize = new(213, 296); Controls.Add(BigEndianCheckBox); - Controls.Add(DisplayTypeLael); + Controls.Add(DisplayTypeLabel); Controls.Add(DisplayTypeDropDown); Controls.Add(label3); Controls.Add(SizeDropDown);