From f2047642eb25e53bee06f98e24ef9a7eb51ec813 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Wed, 2 Feb 2022 15:45:52 -0800 Subject: [PATCH] fix oopsie in last commit --- src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs index dddefeac32..d26587979d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs @@ -184,7 +184,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS _exe.RemoveReadonlyFile(IsDSi ? "firmwarei.bin" : "firmware.bin"); } - if (IsDSi && IsDSiWares) + if (IsDSi && IsDSiWare) { _exe.RemoveReadonlyFile("dsiware.rom"); }