From 2a70b532d53539df7c967d5b8744fb1d1e7e8149 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 2 Apr 2023 05:29:15 +1000 Subject: [PATCH] Disable Hex Editor's "Save [to rom file]" when not looking at rom fixes 2e19451b0 not the "ROM" domain, but the "File on Disk" domain --- src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs b/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs index b198ec8cec..04ead2e8c0 100644 --- a/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs +++ b/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs @@ -1237,6 +1237,7 @@ namespace BizHawk.Client.EmuHawk } else { + SaveMenuItem.Visible = false; SaveAsBinaryMenuItem.Text = "Save as binary..."; }