From 20d73552273882d7d97a4c85b21fe8c5c35da306 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 12 Jan 2025 12:48:11 -0800 Subject: [PATCH] Do not create File On Disk domain for 3DS --- src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs b/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs index 1fec01de63..9203bc34a1 100644 --- a/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs +++ b/src/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs @@ -231,7 +231,7 @@ namespace BizHawk.Client.EmuHawk public override void Restart() { _romDomain = null; - if (Emulator.SystemId is not VSystemID.Raw.Arcade) + if (Emulator.SystemId is not (VSystemID.Raw.Arcade or VSystemID.Raw.N3DS)) { var rom = GetRomBytes(); if (rom is not null)