diff --git a/BizHawk.Client.EmuHawk/Properties/Resources.cs b/BizHawk.Client.EmuHawk/Properties/Resources.cs index f52143c42e..44cb718b44 100644 --- a/BizHawk.Client.EmuHawk/Properties/Resources.cs +++ b/BizHawk.Client.EmuHawk/Properties/Resources.cs @@ -69,6 +69,7 @@ namespace BizHawk.Client.EmuHawk.Properties { internal static readonly Lazy VBoyController = new Lazy(() => ReadEmbeddedBitmap("ControllerImages.VBoyController")); internal static readonly Lazy WonderSwanColor = new Lazy(() => ReadEmbeddedBitmap("ControllerImages.WonderSwanColor")); internal static readonly Lazy ZXSpectrumKeyboards = new Lazy(() => ReadEmbeddedBitmap("ControllerImages.ZXSpectrumKeyboards")); + internal static readonly Lazy DSController = new Lazy(() => ReadEmbeddedBitmap("ControllerImages.DSController")); internal static readonly Bitmap CopyFolderHS = ReadEmbeddedBitmap("CopyFolderHS"); internal static readonly Bitmap corphawk = ReadEmbeddedBitmapAt("images.corphawk.jpg"); internal static readonly Bitmap CorpHawkSmall = ReadEmbeddedBitmap("CorpHawkSmall"); diff --git a/BizHawk.Client.EmuHawk/config/ControllerConfig.cs b/BizHawk.Client.EmuHawk/config/ControllerConfig.cs index e3958758dc..f14ad2c8c0 100644 --- a/BizHawk.Client.EmuHawk/config/ControllerConfig.cs +++ b/BizHawk.Client.EmuHawk/config/ControllerConfig.cs @@ -49,6 +49,7 @@ namespace BizHawk.Client.EmuHawk ControllerImages.Add("VirtualBoy Controller", Properties.Resources.VBoyController); ControllerImages.Add("NeoGeo Portable Controller", Properties.Resources.NGPController); ControllerImages.Add("MAME Controller", Properties.Resources.ArcadeController); + ControllerImages.Add("NDS Controller", Properties.Resources.DSController); } protected override void OnActivated(EventArgs e) diff --git a/BizHawk.Client.EmuHawk/images/ControllerImages/DSController.png b/BizHawk.Client.EmuHawk/images/ControllerImages/DSController.png new file mode 100644 index 0000000000..1d4da9e072 Binary files /dev/null and b/BizHawk.Client.EmuHawk/images/ControllerImages/DSController.png differ