Hack icon for status bar
This commit is contained in:
parent
56538894c6
commit
b832d0f331
|
@ -602,6 +602,7 @@
|
||||||
<None Include="images\ExclamationRed.png" />
|
<None Include="images\ExclamationRed.png" />
|
||||||
<None Include="images\Translation.png" />
|
<None Include="images\Translation.png" />
|
||||||
<None Include="images\HomeBrew.png" />
|
<None Include="images\HomeBrew.png" />
|
||||||
|
<None Include="images\Hack.png" />
|
||||||
<Content Include="output\gamedb.txt" />
|
<Content Include="output\gamedb.txt" />
|
||||||
<Content Include="output\gamedb_neshomebrew.txt" />
|
<Content Include="output\gamedb_neshomebrew.txt" />
|
||||||
<None Include="images\Refresh.bmp" />
|
<None Include="images\Refresh.bmp" />
|
||||||
|
|
|
@ -955,6 +955,11 @@ namespace BizHawk.MultiClient
|
||||||
DumpError.Image = BizHawk.MultiClient.Properties.Resources.HomeBrew;
|
DumpError.Image = BizHawk.MultiClient.Properties.Resources.HomeBrew;
|
||||||
DumpError.ToolTipText = "Homebrew ROM";
|
DumpError.ToolTipText = "Homebrew ROM";
|
||||||
}
|
}
|
||||||
|
else if (Global.Game.Status == RomStatus.Hack)
|
||||||
|
{
|
||||||
|
DumpError.Image = BizHawk.MultiClient.Properties.Resources.Hack;
|
||||||
|
DumpError.ToolTipText = "Hacked ROM";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DumpError.Image = BizHawk.MultiClient.Properties.Resources.GreenCheck;
|
DumpError.Image = BizHawk.MultiClient.Properties.Resources.GreenCheck;
|
||||||
|
|
|
@ -242,6 +242,13 @@ namespace BizHawk.MultiClient.Properties {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static System.Drawing.Bitmap Hack {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Hack", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
internal static System.Drawing.Bitmap HomeBrew {
|
internal static System.Drawing.Bitmap HomeBrew {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("HomeBrew", resourceCulture);
|
object obj = ResourceManager.GetObject("HomeBrew", resourceCulture);
|
||||||
|
|
|
@ -762,4 +762,7 @@
|
||||||
<data name="Translation" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Translation" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\images\Translation.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\images\Translation.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Hack" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\images\Hack.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
Binary file not shown.
After Width: | Height: | Size: 790 B |
Loading…
Reference in New Issue