ControllerConfig - more gracefully handle not having a controller image

This commit is contained in:
adelikat 2020-03-21 11:48:37 -05:00
parent c59d8130bb
commit a24d101f1c
1 changed files with 11 additions and 4 deletions

View File

@ -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")