diff --git a/BizHawk.Client.EmuHawk/config/ControllerConfig.cs b/BizHawk.Client.EmuHawk/config/ControllerConfig.cs index 92adc48586..e3958758dc 100644 --- a/BizHawk.Client.EmuHawk/config/ControllerConfig.cs +++ b/BizHawk.Client.EmuHawk/config/ControllerConfig.cs @@ -248,10 +248,17 @@ namespace BizHawk.Client.EmuHawk private void SetControllerPicture(string controlName) { ControllerImages.TryGetValue(controlName, out var lazyBmp); - var bmp = lazyBmp?.Value ?? Properties.Resources.Help; - pictureBox1.Image = bmp; - pictureBox1.Size = bmp.Size; - tableLayoutPanel1.ColumnStyles[1].Width = bmp.Width; + if (lazyBmp != null) + { + var bmp = lazyBmp.Value; + pictureBox1.Image = bmp; + pictureBox1.Size = bmp.Size; + tableLayoutPanel1.ColumnStyles[1].Width = bmp.Width; + } + else + { + tableLayoutPanel1.ColumnStyles[1].Width = 0; + } // Uberhack if (controlName == "Commodore 64 Controller")