diff --git a/BizHawk.MultiClient/BizHawk.MultiClient.csproj b/BizHawk.MultiClient/BizHawk.MultiClient.csproj
index 1f963d6b3f..abce8bf0c2 100644
--- a/BizHawk.MultiClient/BizHawk.MultiClient.csproj
+++ b/BizHawk.MultiClient/BizHawk.MultiClient.csproj
@@ -602,6 +602,7 @@
+
diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs
index ff3e0f92a3..3bf2320f0d 100644
--- a/BizHawk.MultiClient/MainForm.cs
+++ b/BizHawk.MultiClient/MainForm.cs
@@ -955,6 +955,11 @@ namespace BizHawk.MultiClient
DumpError.Image = BizHawk.MultiClient.Properties.Resources.HomeBrew;
DumpError.ToolTipText = "Homebrew ROM";
}
+ else if (Global.Game.Status == RomStatus.Hack)
+ {
+ DumpError.Image = BizHawk.MultiClient.Properties.Resources.Hack;
+ DumpError.ToolTipText = "Hacked ROM";
+ }
else
{
DumpError.Image = BizHawk.MultiClient.Properties.Resources.GreenCheck;
diff --git a/BizHawk.MultiClient/Properties/Resources.Designer.cs b/BizHawk.MultiClient/Properties/Resources.Designer.cs
index 9a8532c36e..5ab6409e2e 100644
--- a/BizHawk.MultiClient/Properties/Resources.Designer.cs
+++ b/BizHawk.MultiClient/Properties/Resources.Designer.cs
@@ -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 {
get {
object obj = ResourceManager.GetObject("HomeBrew", resourceCulture);
diff --git a/BizHawk.MultiClient/Properties/Resources.resx b/BizHawk.MultiClient/Properties/Resources.resx
index 15d2904471..c39e6b520f 100644
--- a/BizHawk.MultiClient/Properties/Resources.resx
+++ b/BizHawk.MultiClient/Properties/Resources.resx
@@ -762,4 +762,7 @@
..\images\Translation.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\images\Hack.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/BizHawk.MultiClient/images/Hack.png b/BizHawk.MultiClient/images/Hack.png
new file mode 100644
index 0000000000..06e6a4b96c
Binary files /dev/null and b/BizHawk.MultiClient/images/Hack.png differ