icon for the snes9x core
This commit is contained in:
parent
c1e866c9c9
commit
4eab035d26
|
@ -1463,6 +1463,7 @@
|
|||
<None Include="config\ControllerImages\GENController.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="images\snes9x.png" />
|
||||
<None Include="images\YellowUp.png" />
|
||||
<None Include="images\YellowRight.png" />
|
||||
<None Include="images\YellowLeft.png" />
|
||||
|
|
|
@ -35,6 +35,7 @@ using BizHawk.Emulation.Cores.Nintendo.N64;
|
|||
|
||||
using BizHawk.Client.EmuHawk.WinFormExtensions;
|
||||
using BizHawk.Client.EmuHawk.ToolExtensions;
|
||||
using BizHawk.Emulation.Cores.Nintendo.SNES9X;
|
||||
|
||||
namespace BizHawk.Client.EmuHawk
|
||||
{
|
||||
|
@ -2496,6 +2497,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
CoreNameStatusBarButton.Image = Properties.Resources.gambatte;
|
||||
}
|
||||
else if (Global.Emulator is Snes9x)
|
||||
{
|
||||
CoreNameStatusBarButton.Image = Properties.Resources.snes9x;
|
||||
}
|
||||
else
|
||||
{
|
||||
CoreNameStatusBarButton.Image = null;
|
||||
|
|
|
@ -1149,6 +1149,16 @@ namespace BizHawk.Client.EmuHawk.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap snes9x {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("snes9x", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
|
|
@ -954,4 +954,7 @@
|
|||
<data name="YellowUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\YellowUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="snes9x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\snes9x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Binary file not shown.
After Width: | Height: | Size: 232 B |
Loading…
Reference in New Issue