more icons, don't show one if there isn't oen
This commit is contained in:
parent
ec8c2f8bee
commit
3901fb640b
|
@ -1492,6 +1492,7 @@
|
|||
<None Include="images\bsnes.png" />
|
||||
<None Include="images\emu7800.png" />
|
||||
<None Include="images\genplus.png" />
|
||||
<None Include="images\gambatte.png" />
|
||||
<Content Include="images\logo.ico" />
|
||||
<None Include="images\Paste.png" />
|
||||
<None Include="images\reboot.png" />
|
||||
|
|
|
@ -2374,11 +2374,14 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.ppsspp;
|
||||
}
|
||||
|
||||
// TODO: other icons
|
||||
// unknown
|
||||
// mupen64plus,
|
||||
// gambattte,
|
||||
else if (Global.Emulator is Gameboy)
|
||||
{
|
||||
CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.gambatte;
|
||||
}
|
||||
else
|
||||
{
|
||||
CoreNameStatusBarButton.Image = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -490,6 +490,16 @@ namespace BizHawk.Client.EmuHawk.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap gambatte {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("gambatte", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
|
|
@ -909,6 +909,9 @@
|
|||
<data name="emu7800" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\emu7800.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="gambatte" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\gambatte.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="genplus" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\genplus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 560 B |
|
@ -12,7 +12,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
"Meteor",
|
||||
"blastrock",
|
||||
isPorted: true,
|
||||
isReleased: true
|
||||
isReleased: false
|
||||
)]
|
||||
public class GBA : IEmulator, IVideoProvider, ISyncSoundProvider
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
"Gambatte",
|
||||
"sinamas",
|
||||
isPorted: true,
|
||||
isReleased: false
|
||||
isReleased: true
|
||||
)]
|
||||
public class Gameboy : IEmulator, IVideoProvider, ISyncSoundProvider
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue